Delete a checklist
Delete header
Parameter | Description | Example | More info |
---|---|---|---|
API | The API area | checklistheader.json | |
Action | Delete | &action=delete | |
General | Parameters described in overview | user=user&password=user&version=3.3 | |
Input | JSON string | input="data": ... | |
input mandatory checklistUuid | Checklist UUID | "checklistUuid":"F820725A727FEF4EB4129E6E798B90AD" | |
Response | Returned data | A JSON string containing the data |
Example request:
Request to delete a checklist
http://<SERVER>/jsonAPI/checklistheader.json?user=user&password=user&version=3.3&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"
}
]
}