GET api/v2/customers/candelete/{id}
Check if it's possible to delete a customer. If allowed, http status code 200 (Ok) is returned. If customer not found, http status code 404 (NotFound) is returned. If delete is not allowed http status code 406 (NotAcceptable) is returned. if a server error occurs, http status code 500 (InternalServerError) is returned. the response body contains more details.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
F8 application customer id |
globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
WebApiV2ResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| code | string |
None. |
|
| message | string |
None. |
|
| detail | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"code": "sample string 1",
"message": "sample string 2",
"detail": "sample string 3"
}