Delete

ParameterMandatoryDescriptionExamplesMore Info
APIYesThe API areaclientcontacts.json
GeneralYesParameters described in overviewuser=user&password=user&version=3.9Overview
ActionYesThe action to performaction=delete
InputYesJSON stringSee below
JSON InputMandatoryDescriptionExamples
IdentifierYesContact ID or UUID"clientcontactInternalRef":6535

Example request:

http://<SERVER>/jsonapi/clientcontacts.json?user=user&password=user&version=3.9&action=delete&input={
  "data": [
    {
      "clientcontactInternalRef": 6535
    }
  ]
}

Example response:

{
  "responsecode": 1,
  "responsestatus": "OK",
  "errorcode": 0,
  "errormessage": "",
  "responsemessage": "data processed successfully.",
  "warningmessage": "",
  "success": true,
  "data": [
    {
      "clientcontactInternalRef": 8635,
      "clientcontactuuid": "18220E9DA4761141891ED2C5E55838CF"
    }
  ]
}