API

List all notifications

Lists all notifications at a company.

GET/v1/hq/companies/{company_id}/push_notifications
AuthorizationBearer <token>

The Noona HQ API uses Bearer token for authentication.

Endpoints that return generic information that does not contain sensitive data do not require authentication. Endpoints that require authentication are specifically marked in the documentation.

Authorization: Bearer your-token

In: header

Path Parameters

company_id*string
Example"dwawd8awudawd"

Query Parameters

filter?

Response Body

application/json

curl -X GET "https://api.noona.is/v1/hq/companies/dwawd8awudawd/push_notifications"
[
  {
    "id": "8wa9uiah28dawd123",
    "created_at": "2023-10-01T12:00:00Z",
    "type": "eventCancelledFromMarketplace",
    "event": "event123",
    "company": "company123",
    "customer": "customer123",
    "data": {
      "title": "Notification Title",
      "topic": "news",
      "body": "Notification body"
    }
  }
]
Empty