---
title: "Get the list of predefined action groups (for the logged API user's account)"
description: "GET /predefined_action_groups — Returns the account's predefined action groups. A group bundles two or more predefined action templates so they can all be applied to a contact in one request, each with its own due date."
canonical_url: https://developer.onepagecrm.com/api/reference/predefined-action-groups/get-predefined_action_groups/
source: Markdown mirror of https://developer.onepagecrm.com/api/reference/predefined-action-groups/get-predefined_action_groups/
---

`GET /predefined_action_groups`

Returns the account's predefined action groups. A group bundles two or more predefined action templates so they can all be applied to a contact in one request, each with its own due date.

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" \
  -u $user_id:$api_key
```

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

## Responses

### 200

OK

```json
{
  "status": 0,
  "message": "OK",
  "timestamp": 1528373119,
  "data": {
    "predefined_action_groups": [
      {
        "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/)
