imageDelete
public static string imageDelete(string token, string ImageID)
Delete an Image from the client's account.Returns true if image has been deleted or else throws an exception.
| Parameters |
| string token | A valid token for your account. To generate a token, use the login method. |
| string ImageID | ID for the image which is to delete |
| Returns |
| string | Returns true if image has been deleted or else throws an exception. |
- <?php
- /**
- This Example shows how to authenticate a user using XML-RPC.
- Note that we are using the PEAR XML-RPC client and recommend others do as well.
- **/
- require_once 'XML/RPC2/Client.php';
- require_once 'inc/config.php';
- $client = XML_RPC2_Client::create($apiURL);
- $token = $client->login($apiLogin, $apiPassword);
-
- $ImageID = '1060';
- $returnValue = $client->imageDelete($token, $ImageID);
- ?>