Dynamo Developer DocsDynamo Developer Docs
External APIVip users

List VIP users

The VIP users (players marked VIP for the workspace) on one channel, with their profile fields and resolved personal-info (including birthday). Rows are highest-LTV first; paginated via `limit` + `offset` with `total` and `nextOffset`. Optional birthday filters: `hasBirthday=true` and `birthdayMonth=1..12`. `workspaceId` and `mediumId` are **required**; the workspace must be a VIP workspace and the channel connected to it.

GET/vip-users

Authorization

x-api-key x-date x-signature
x-api-key<token>

Your API key (the ApiKeys document id).

In: header

x-date<token>

Current timestamp in ISO-8601 (must be fresh — within −5s..+60s of server time).

In: header

x-signature<token>

HMAC-SHA256 of the x-date string keyed by your secret, lowercase hex.

In: header

Query Parameters

workspaceId*string

The VIP workspace id (from GET /workspaces).

mediumId*string

The channel id (from GET /channels).

hasBirthday?string

When true, only users with a known birthday.

birthdayMonth?integer

Only users whose birthday is in this calendar month.

limit?integer

Max users per page.

offset?integer

Number of users to skip (for pagination).

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/vip-users?workspaceId=string&mediumId=string"
{  "items": [    {      "conversationId": "string",      "userName": "string",      "firstName": "string",      "lastName": "string",      "cuid": "string",      "profilePic": "string",      "birthday": "string",      "lastPurchaseTimestamp": 0,      "lastUserMessageTimestamp": 0,      "lastAppOpenTimestamp": 0    }  ],  "returned": 0,  "total": 0,  "mayHaveMore": true,  "nextOffset": 0,  "scanCapped": true}
{  "message": "string"}
{  "message": "string"}
{  "message": "string"}
{  "message": "string"}
{  "error": [    {      "message": "string",      "path": [        "string"      ],      "type": "string",      "context": {}    }  ]}