Delete

ParameterMandatoryDescriptionExamplesMore Info
APIYesThe API areaclients.json
GeneralYesParameters described in overviewuser=user&password=user&version=3.9Overview
ActionYesThe action to performaction=delete
InputYesJSON stringSee below
JSON InputMandatoryDescriptionExamples
IdentifierYesClient ID or UUID"clientCode":"1/P0909"

Example request:

http://<SERVER>/jsonapi/clients.json?user=user&password=user&version=3.9&action=delete&input={
  "data": [
    {
      "clientCode": "1/P0909"
    }
  ]
}

Example response:

{
  "responsecode": 1,
  "responsestatus": "OK",
  "errorcode": 0,
  "errormessage": "",
  "responsemessage": "data processed successfully.",
  "warningmessage": "",
  "success": true,
  "data": [
    {
      "clientCode": "1/P2028",
      "clientUuid": "6BDD26C48BF1D445B4EF8CEDCEFDD685"
    }
  ]
}