Delete a checklist
| Parameter | Mandatory | Description | Examples | More Info |
|---|---|---|---|---|
| API | Yes | The API area | checklistheader.json | |
| General | Yes | Parameters described in overview | user=user&password=user | Structure of an API call |
| Action | Yes | The action to perform | action=delete | |
| Input | Yes | JSON string | See below |
| JSON Input | Mandatory | Description | Examples |
|---|---|---|---|
| Identifier | Yes | Checklist UUID | "checklistUuid":"F820725A727FEF4EB4129E6E798B90AD" |
Example request:
http://<SERVER>/jsonAPI/checklistheader.json?user=user&password=user&version=4&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"
}
]
}