Skip to main content
GET
/
merchant-analytics
Get daily event analytics
curl --request GET \
  --url https://cool.jobmojito.com/functions/v1/merchant-analytics \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "day": "2026-01-15",
      "event": "<string>",
      "event_number": 12
    }
  ],
  "pagination": {
    "total": 137,
    "limit": 50,
    "offset": 0,
    "has_more": true
  }
}

Authorizations

Authorization
string
header
required

Supabase JWT access token, passed as Authorization: Bearer <token>.

Query Parameters

merchant_id
string<uuid>

Optional merchant to scope the results to. Honoured only when the caller is an admin or a sub-merchant operator; otherwise the merchant from the JWT is always used.

Example:

"28106cba-1c27-4e53-b149-32113e5e8e31"

date_from
string
required

Start of the date range (inclusive), YYYY-MM-DD.

Pattern: ^\d{4}-\d{2}-\d{2}$
Example:

"2026-01-01"

date_to
string
required

End of the date range (inclusive), YYYY-MM-DD.

Pattern: ^\d{4}-\d{2}-\d{2}$
Example:

"2026-01-01"

interview_id
string<uuid>

Optional interview definition id to drill the event counts down to a single interview.

limit
integer
default:50

Maximum number of records to return (1–1000).

Required range: 1 <= x <= 1000
Example:

50

offset
integer | null
default:0

Number of records to skip from the start of the result set.

Required range: x >= 0
Example:

0

Response

A page of daily event counts with pagination metadata.

data
object[]
required

Daily event counts for the requested range, ordered by day ascending.

pagination
object
required