Skip to main content
GET
/
v2
/
access
/
analytics
/
mass-messages
/
:massMessageId
/
buyers
Mass message buyers
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,
  "marker": 123
}

Authorizations

apiKey
string
header
required

Your OFAuth API key for authenticating requests.

x-connection-id
string
header
required

Requires a connection via the x-connection-id header.

Path Parameters

massMessageId
string | null

Mass message ID

Minimum string length: 1

Query Parameters

limit
integer
default:10

Number of items to return (1-20, default: 10)

Required range: 1 <= x <= 20
offset
integer | null
default:0

Number of items to skip (default: 0)

Required range: x >= 0
marker
integer | null
default:0

Pagination marker from previous response

Required range: x >= 0

Response

Successful response

list
object[]
required
hasMore
boolean
required
marker
number