Get unread notifications for an ambassador (platform)

GET /platform/ambassadors/{id}/notifications

Path parameters

  • id integer Required

    The ambassador id

Responses

  • 200 application/json

    Returns the unread notifications for the ambassador

    Hide response attributes Show response attributes object
    • id string(uuid)
    • type string
    • data object
    • read_at string(date-time)
  • 401 application/json

    Unauthorized.

    Hide response attribute Show response attribute object
    • message string
  • 403

    Forbidden - You don't have permission to access this route

  • 404

    Not Found - Ambassador not found

GET /platform/ambassadors/{id}/notifications
curl \
 --request GET 'https://domain.tld/api/v2/platform/ambassadors/{id}/notifications' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
[
  {
    "id": "string",
    "type": "string",
    "data": {},
    "read_at": "2025-05-04T09:42:00Z"
  }
]
Response examples (401)
{
  "message": "Unauthorized."
}