Hi, die SOAP-API ist noch neu Land für mich, ich möchte gerne über unser eigenes CMS Subdomains aktualisieren können. GET ist nicht das Problem, aber mit dem SET, bzw. Edit habe ich das Problem.
Code
		
					
			$response = $client->HostingSubscriptionGet($params);
$response_retry = $response->domains->HostingSubscriptionDomain;
foreach ($response_retry as $key => $object) {
    if ($object->name == 'test.de') {
        $response_sub_retry = $object->subdomains->HostingSubscriptionSubdomain;
        foreach ($response_sub_retry as $key2 => $object2) {
            if ($object2->name == $liefersubdomain) {
                $arrayID1 = $key;
                $arrayID2 = $key2;
            }
        }
    }
}das heißt ich möchte folgendes bearbeiten:
Code
		
			$response->domains->HostingSubscriptionDomain[$arrayID1]->subdomains->HostingSubscriptionSubdomain[$arrayID2]->name
und
Code
		
			$response->domains->HostingSubscriptionDomain[$arrayID1]->subdomains->HostingSubscriptionSubdomain[$arrayID2]->httpDestKann mir da einer helfen?
Zur not auch, mit Subdomain löschen und neu anlegen.