Delete
/api/3/Cliparts/DeleteClipartByClipartCode?websiteId={websiteId}&webApiClientKey={webApiClientKey}&clipartCode={clipartCode}&userEmailAddress={userEmailAddress}
The Delete Clipart By ClipartCode API allows you to delete a specific clipart from your system by passing its unique clipart code. This is useful when you need to remove cliparts that are no longer needed or are outdated.
Request Information
Parameters
Response Information
Response body formats
On Success
On success, this method will call back the JavaScript method in the website which is specified in the "successCallback" parameter with success Message.
Success Response:
{
"Response": "Success",
"Message": "Clipart has been deleted successfully.",
"Data": null,
"ErrorCode": ""
}
On Error
On error, this method will call back the JavaScript method in the website which is specified in the "errorCallback" parameter with errorMessage.
Error Response:
{
"Response": "Error",
"Message": "Invalid clipart code.",
"Data": null,
"ErrorCode": "248"
}