---
title: "Get all in-app notification of the requesting user."
method: GET
path: "/v1/notifications"
tags: ["Notification"]
---

# Get all in-app notification of the requesting user.

`GET /v1/notifications`

Returns the paginated list of in-app notifications

## Query parameters

- `page_size` integer
- `page_token` string

## Response `200`

OK

- NotificationPage
  - `items` Notification[], required
    - `id` string, required — Unique identifier of the in-app notification.
    - `title` string, required — Title of the in-app notification.
    - `description` string, required — Description of the in-app notification.
    - `recipient` string, required — ID of the user who got notified.
    - `read` boolean, required — Whether the notification was read by the user.
    - `created_at` string, date-time, required — Date when the todo item was created.
    - `updated_at` string, date-time, nullable, required — Date when the in-app notification was updated.
  - `page_info` PageInfo, required — Cursor pagination metadata for a page of results.
    - `next_page_token` string, nullable — Opaque token for the next page. Omitted when has_more is false.
    - `has_more` boolean, required — Whether more results are available.
    - `total_count` integer, nullable — Optional total count when requested by the server.

## Other responses

- `400` — Bad request
- `401` — Unauthorized request
- `403` — Forbidden
- `500` — Internal Server Error

---

[API](https://skmtc.net/opcotech/apis/elemo-api.md) · [All operations](https://skmtc.net/opcotech/apis/elemo-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/opcotech/elemo-api/revisions/6965ecf3ab92/schema)
