# POST /api/checklists/items/apply-group > Checklists - Apply a Checklist Group to a Task Copies every template of the group onto the task as new checklist items, the same way the task detail screen does it. - **Endpoint:** `POST /api/checklists/items/apply-group` - **Group:** Checklists - **Since:** v1.0.0 - **Defined in:** `RestApi/Controllers/ChecklistsController.php` ## Headers | Field | Type | Description | | --- | --- | --- | | `authtoken` | String | Authentication token, generated from admin area | ## Parameters | Field | Type | Required | Description | | --- | --- | --- | --- | | `task_id` | Number | yes | Mandatory Task ID, must exist | | `group_id` | Number | yes | Mandatory Checklist group ID, must exist | ## Request example ```bash curl -X POST "https://yoursite.com/index.php/api/checklists/items/apply-group" \ -H "authtoken: YOUR_API_TOKEN" \ -H "Content-Type: application/json" \ -d '{ "task_id": "...", "group_id": "..." }' ``` ## Responses ### Success - Success-Response: ```json HTTP/1.1 201 Created { "status": 200, "messages": {"success": "The record has been saved."}, "ids": [7, 8, 9] } ``` --- Part of the [REST API for RISE CRM](https://risecrm.themesic.com/apiguide/) documentation. Full page: https://risecrm.themesic.com/apiguide/checklists/apply-checklist-group/