---
title: "Get a list of notifications that user has"
description: "GET /notifications — Returns all notifications (except emails and links) for the given user"
canonical_url: https://developer.onepagecrm.com/api/reference/notifications/get-notifications/
source: Markdown mirror of https://developer.onepagecrm.com/api/reference/notifications/get-notifications/
---

`GET /notifications`

Returns all notifications (except emails and links) for the given user

Resource: [Notifications](https://developer.onepagecrm.com/api/reference/notifications/) · [API Reference](https://developer.onepagecrm.com/api/reference/)

## Request

```bash
curl "https://app.onepagecrm.com/api/v3/notifications" \
  -u $user_id:$api_key
```

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

## Query parameters

| Name | Type | Description |
| --- | --- | --- |
| `page` | integer | Page number. Starts from 1. Default is 1. |
| `per_page` | integer | Number of records to return. Maximum 100 allowed. Default is 10. |

## Responses

### 200

OK

```json
{
  "status": 0,
  "message": "OK",
  "timestamp": 1528373119,
  "data": {
    "notifications": [
      {
        "notification": {
          "id": "5aead4809007ba56ffca942e",
          "type": "assigned_action",
          "by": "Vlad K.",
          "read": true,
          "user_id": "5aead4809007ba56ffca942e",
          "contact_id": "5aead4809007ba56ffca942e",
          "created_at": "2019-06-21T16:53:12Z",
          "modified_at": "2019-06-21T16:53:12Z",
          "mobile_data": {
            "title": "Action assigned to you (by User N.)",
            "body": "17:13: in bulk",
            "action_type": "action_with_time"
          }
        }
      }
    ],
    "total_count": 1,
    "page": 1,
    "per_page": 10,
    "max_page": 1
  }
}
```

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/)
- [Pagination](https://developer.onepagecrm.com/api/pagination/)
