List notes on a notification

Overview

Get a paginated list of notes attached to a given error notification, newest-updated first.

Prerequisites

  • A bearer token. Callable with Partner tokens.
  • Values for the required query parameter notification_id — see the table below.

Base URL

EnvironmentURL
Productionhttps://production-api.shoutaboutus.com
Developmenthttps://development-api.shoutaboutus.com

Endpoint

GET /api/v1/partner/error-notifications/notes

Authentication

  • Requires a bearer token in the Authorization: Bearer <bearer-token> header.
  • Who can call it: Partner tokens.
  • Authentication is under the partner prefix.
  • notification_id must be an integer.
  • An id with no matching notification returns 400 (No notification is available).

Rate limit

  • No rate limit.

Query parameters

  • Query: notification_id (integer, required) — the parent notification id.
  • Query: limit (integer, optional) — page size, default 10.
  • Query: page (integer, optional) — page number.

Response

  • id (int) — note id.
  • notification_id (int) — the parent notification id.
  • note_content (string) — the note text.
  • created_at (string) — formatted m/d/Y.
  • updated_at (string) — formatted Y-m-d H:i:s.

200 Success · 200

{
  "data": [
    {
      "id": 1,
      "notification_id": 1215,
      "note_content": "Reached out to Google support",
      "created_at": "05/29/2026",
      "updated_at": "2026-05-29 14:30:00"
    }
  ]
}

Errors

StatusMeaning
400The request was rejected — the response explains why
401The bearer token is missing, expired or invalid
422The request failed validation — the response names the fields
500Unexpected server error

Example request

curl --request GET \
  --url "https://production-api.shoutaboutus.com/api/v1/partner/error-notifications/notes?notification_id=123" \
  --header 'Authorization: Bearer <bearer-token>' \
  --header 'Accept: application/json'

Did this page help you?