public array DeletePortfolioDomain( array $entries )
Deletes domain(s) from existing portfolios.
With one function request, you can upload a maximum of 50 domains.
Type | Parameter | Mandatory | Description | ||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
integer | $partnerid | yes | Partner ID. | ||||||||
string | $signkey | yes | Sign key. | ||||||||
string | $username | yes | User name. (max. 25 characters) | ||||||||
string | $password | yes | Password. (max. 16 characters) | ||||||||
string | $portfolioname | yes | Name of existing portfolio. | ||||||||
array | $domainentry | yes |
Array of all the data for a domain name, maximum 50 per request. Array elements:
|
Type | Description | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
array |
The return value contains the following elements:
|
<?php
try {
// Create a new client by providing the endpoint to the constructor.
$client = new SoapClient(
null,
[
'location' => 'https://api.sedo.com/api/v1/',
'soap_version' => SOAP_1_1,
'encoding' => 'UTF-8',
'uri' => 'urn:SedoInterface',
'style' => SOAP_RPC,
'use' => SOAP_ENCODED,
]
);
// Set the values for the array
$params = [
'partnerid' => 1234,
'signkey' => 'abcdefghijklmnopqrstuvwxyz0123456789',
'username' => 'johndoe',
'password' => 'secret',
'portfolioname' => 'example',
'domainentry' => ['example.com', 'example.net'],
];
// Call the SOAP method
$result = $client->DeletePortfolioDomain($params);
// Display the result
while (list ($key, $val) = each($result)) {
echo "$key => $val<br>\n";
}
} catch (SoapFault $e) {
echo 'Error: '.$e->getMessage();
}