Add Checklist Group

POST/api/checklists/groups

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area

Parameters

FieldTypeDescription
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 }
MethodPOST
Path/api/checklists/groups
GroupChecklists
Sincev1.0.0
Defined inRestApi/Controllers/ChecklistsController.php