DELETE api/Product?APIKey={APIKey}&ClientId={ClientId}&ProductId={ProductId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| APIKey | string |
Required |
|
| ClientId | string |
Required |
|
| ProductId | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
APIResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | Status |
None. |
|
| Id | globally unique identifier |
None. |
|
| Description | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 0,
"Id": "d282a338-56c0-46bf-9ee0-f77fdda8bca8",
"Description": "sample string 2"
}
application/xml, text/xml
Sample:
<APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Protech.UX.API.Response"> <Description>sample string 2</Description> <Id>d282a338-56c0-46bf-9ee0-f77fdda8bca8</Id> <Status>Success</Status> </APIResponse>