curl --request GET \
--url https://api-next.ofauth.com/v2/access/analytics/mass-messages/:massMessageId/buyers \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <api-key>'{
"list": [
{
"id": 123,
"username": "<string>",
"name": "<string>",
"isVerified": true,
"avatar": "<string>",
"avatarThumbs": {
"c50": "<string>",
"c144": "<string>"
}
}
],
"hasMore": true,
"nextMarker": 123
}Get list of users who purchased a specific mass message
Permission Required: analytics:read
curl --request GET \
--url https://api-next.ofauth.com/v2/access/analytics/mass-messages/:massMessageId/buyers \
--header 'apiKey: <api-key>' \
--header 'x-connection-id: <api-key>'{
"list": [
{
"id": 123,
"username": "<string>",
"name": "<string>",
"isVerified": true,
"avatar": "<string>",
"avatarThumbs": {
"c50": "<string>",
"c144": "<string>"
}
}
],
"hasMore": true,
"nextMarker": 123
}Requires a connection via the x-connection-id header.
Mass message ID
1Number of items to return (1-20, default: 10)
1 <= x <= 20Number of items to skip (default: 0)
x >= 0Pagination marker from previous response
x >= 0Was this page helpful?