---
title: "Get the list of predefined actions (for the logged API user's account)"
description: "GET /predefined_actions — Returns the account's predefined actions — reusable next-action templates, each with the text to apply and a days offset used to calculate the due date."
canonical_url: https://developer.onepagecrm.com/api/reference/predefined-actions/get-predefined_actions/
source: Markdown mirror of https://developer.onepagecrm.com/api/reference/predefined-actions/get-predefined_actions/
---

`GET /predefined_actions`

Returns the account's predefined actions — reusable next-action templates, each with the text to apply and a days offset used to calculate the due date. Actions that belong to a group are included, and carry that group's action_group_id.

Resource: [Predefined Actions](https://developer.onepagecrm.com/api/reference/predefined-actions/) · [API Reference](https://developer.onepagecrm.com/api/reference/)

## Request

```bash
curl "https://app.onepagecrm.com/api/v3/predefined_actions" \
  -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_actions": [
      {
        "predefined_action": {
          "id": "5acddaa7d556733c507ff405",
          "text": "#1 Email [firstname] introducing our organization",
          "days": 4
        }
      }
    ]
  }
}
```

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/)
