---
title: "Retrieve a notification"
method: GET
path: "/v1/notifications/{id}"
tags: ["Notification"]
---

# Retrieve a notification

`GET /v1/notifications/{id}`

Returns a single notification of the current company (resolved from the
`company-id` header).

## Path parameters

- `id` string, required

## Parameters

- `#/paths/~1v1~1users/get/parameters/0` — unresolved $ref

## Response `200`

The requested notification.

- Notification — An in-app notification delivered to a user (backed by the `noticed` gem). Each notification points at a `noticed_event` that carries the payload (`params`) and the `company_id` scoping.
  - `id` string, uuid, required
  - `type` string, nullable — Notification subclass, e.g. `TransactionApprovedNotifier::Notification`.
  - `event_id` string, uuid
  - `recipient_type` string
  - `recipient_id` string — Firebase UID of the recipient user.
  - `read_at` string, date-time, nullable — Timestamp the notification was read; null when unread.
  - `seen_at` string, date-time, nullable
  - `created_at` string, date-time
  - `updated_at` string, date-time

## Other responses

- `401` — Unauthorized
- `404` — Company or notification not found

---

[API](https://skmtc.dev/cardda/apis/banking-api.md) · [All operations](https://skmtc.dev/cardda/apis/banking-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/cardda/banking-api/revisions/ff1aeb3fda8b/schema)
