Delete

Delete a checklist

ParameterMandatoryDescriptionExamplesMore Info
APIYesThe API areachecklistheader.json
GeneralYesParameters described in overviewuser=user&password=user&version=3.9Overview
ActionYesThe action to performaction=delete
InputYesJSON stringSee below
JSON InputMandatoryDescriptionExamples
IdentifierYesChecklist UUID"checklistUuid":"F820725A727FEF4EB4129E6E798B90AD"

Example request:

http://<SERVER>/jsonAPI/checklistheader.json?user=user&password=user&version=3.9&action=delete&input={
  "data": [
    {
      "checklistUuid": "F820725A727FEF4EB4129E6E798B90AD"
    }
  ]
}

Example response:

{
  "responsecode": 1,
  "responsestatus": "OK",
  "errorcode": 0,
  "errormessage": "",
  "responsemessage": "data processed successfully.",
  "warningmessage": "",
  "success": true,
  "data": [
    {
      "checklistUuid": "F820725A727FEF4EB4129E6E798B90AD"
    }
  ]
}