Add Checklist Group
POST/api/checklists/groups
Headers
| Field | Type | Description |
|---|---|---|
| authtoken | String | Authentication token, generated from admin area |
Parameters
| Field | Type | Description |
|---|---|---|
| title | String | Mandatory Group title |
| checklists | String | Mandatory comma separated checklist template IDs |
curl -X POST "https://yoursite.com/api/checklists/groups" \
-H "authtoken: YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{ "title": "...", "checklists": "..." }' Success-Response:
HTTP/1.1 201 Created
{ "status": 200, "messages": {"success": "The record has been saved."}, "id": 2 }