---
title: "Get a specific predefined action group"
description: "GET /predefined_action_groups/{predefined_action_group_id} — Returns one predefined action group, including action_ids — the templates that currently belong to it, resolved live. Passing a plain predefined action's ID here returns not-found."
canonical_url: https://developer.onepagecrm.com/api/reference/predefined-action-groups/get-predefined_action_groups-predefined_action_group_id/
source: Markdown mirror of https://developer.onepagecrm.com/api/reference/predefined-action-groups/get-predefined_action_groups-predefined_action_group_id/
---

`GET /predefined_action_groups/{predefined_action_group_id}`

Returns one predefined action group, including action_ids — the templates that currently belong to it, resolved live. Passing a plain predefined action's ID here returns not-found.

Resource: [Predefined Action Groups](https://developer.onepagecrm.com/api/reference/predefined-action-groups/) · [API Reference](https://developer.onepagecrm.com/api/reference/)

## Request

```bash
curl "https://app.onepagecrm.com/api/v3/predefined_action_groups/{predefined_action_group_id}" \
  -u $user_id:$api_key
```

Authentication is HTTP Basic — `user_id` as username, `api_key` as password.
See https://developer.onepagecrm.com/api/authentication/.

## Path parameters

| Name | Type | Description |
| --- | --- | --- |
| `predefined_action_group_id` | string | Predefined Action Group ID |

## Responses

### 200

OK

```json
{
  "status": 0,
  "message": "OK",
  "timestamp": 1528373119,
  "data": {
    "predefined_action_group": {
      "id": "5c79510e9007ba3f7519e820",
      "text": "Follow-up sequence",
      "position": 0,
      "action_ids": [
        "5acddaa7d556733c507ff405",
        "5acddaa7d556733c507ff406"
      ]
    }
  }
}
```

Standard error responses: 400, 401, 403, 404, 409, 500 — shared across the API. See https://developer.onepagecrm.com/api/errors/.

## Related guides

- [Authentication](https://developer.onepagecrm.com/api/authentication/)
- [Errors](https://developer.onepagecrm.com/api/errors/)
- [Rate limits](https://developer.onepagecrm.com/api/rate-limits/)
