API

Count events by date

Returns a count of events per day within the specified date range, if there are no events on a date, it will not appear in the result.

GET/v1/hq/companies/{company_id}/events_count
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?
select?array<string>
expand?array<string>

Response Body

application/json

curl -X GET "https://api.noona.is/v1/hq/companies/dwawd8awudawd/events_count"
[
  {
    "date": "2022-09-12",
    "count": 1
  }
]
Empty
Empty
Empty
Empty