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
| Environment | URL |
|---|---|
| Production | https://production-api.shoutaboutus.com |
| Development | https://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
partnerprefix. notification_idmust 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) — formattedm/d/Y.updated_at(string) — formattedY-m-d H:i:s.
200 Success · 200
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
| Status | Meaning |
|---|---|
400 | The request was rejected — the response explains why |
401 | The bearer token is missing, expired or invalid |
422 | The request failed validation — the response names the fields |
500 | Unexpected 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'Updated 8 days ago
Did this page help you?
