Checklist Groups
Manage checklist groups. Ability to create, edit, view, and delete checklist groups.
Available Endpoints
| Method |
Path |
Description |
| GET |
/api/checklist-groups |
List checklist groups |
| GET |
/api/checklist-groups/{id} |
View group details |
| POST |
/api/checklist-groups |
Create new group |
| PUT |
/api/checklist-groups/{id} |
Full update of a group |
| PATCH |
/api/checklist-groups/{id} |
Partial update of a group |
| DELETE |
/api/checklist-groups/{id} |
Delete a group |
Example Request
curl -X GET "https://example.com/api/checklist-groups" \
-H "Authorization: Bearer {token}"
Success Response (200)
{
"records": [],
"meta": {
"total": 0,
"current_page": 1,
"per_page": 20
}
}
Errors
| Code |
Description |
| 401 |
Invalid token |
| 403 |
Access denied |
| 404 |
Record not found |
| 422 |
Validation error |