DELETE api/v1/admin/clients/{id}
This method deletes the client, given the id.
Request Information
URI Parameters
| Name | Description | Type | Additional information | 
|---|---|---|---|
| id | id of the client | globally unique identifier | Required | 
Body Parameters
None.
Response Information
Resource Description
ResponseOfString| Name | Description | Type | Additional information | 
|---|---|---|---|
| Error | Error | None. | |
| ResponseData | ResponseDataOfString | None. | 
Response Formats
application/json, text/json
            Sample:
        
{
  "Error": {
    "ErrorCode": "sample string 1",
    "ErrorReason": "sample string 2"
  },
  "ResponseData": {
    "Identification": {
      "UserId": "sample string 1"
    },
    "Result": "sample string 1",
    "Detail": "sample string 2"
  }
}
        application/xml, text/xml
            Sample:
<ResponseOfString xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <Error>
    <ErrorCode>sample string 1</ErrorCode>
    <ErrorReason>sample string 2</ErrorReason>
  </Error>
  <ResponseData>
    <Result>sample string 1</Result>
    <Identification>
      <UserId>sample string 1</UserId>
    </Identification>
    <Detail>sample string 2</Detail>
  </ResponseData>
</ResponseOfString>