Delete

ParameterMandatoryDescriptionExamplesMore Info
APIYesThe API areasuppliercontacts.json
GeneralYesParameters described in overviewsee overviewStructure of an API call
ActionYesThe action to performaction=delete
InputYesJSON stringSee below
JSON InputMandatoryDescriptionExamples
IdentifierYesData to identify record"supplieruuid":"1C740E283C8D2A41B4A1CA7E4964171B"

Example request:

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

Example response:

{
  "responsecode": 1,
  "responsestatus": "OK",
  "errorcode": 0,
  "errormessage": "",
  "responsemessage": "data processed successfully.",
  "warningmessage": "",
  "success": true,
  "data": [
    {
      "suppliercontactUuid": "A4B734073799E046AAE41719B5B207B6",
      "suppliercontactInternalRef": 305
    }
  ]
}