PageResponse_AdvertiserDto_
A single page of results. nextCursor is an opaque token to pass back as ?cursor= to fetch the following page; null means there are no more results.
items object[]required
Array [
idstring
Unique identifier of the advertiser
Example:
3Kd7Np5RvM9qWx2T8yZ6created_atdate-time
Timestamp when the advertiser was created
Example:
2026-01-15T09:30:00Zupdated_atdate-time
Timestamp when the advertiser was last updated
Example:
2026-01-15T09:30:00Znamestring
Name of the advertiser
Example:
Acme Corpdescriptionstringnullable
Free-text description of the advertiser
Example:
Consumer electronics manufacturerwebsitestringnullable
Advertiser's website URL
Example:
https://example.comemailstring
Primary contact email for the advertiser
Example:
ads@example.comstatusstring
Advertiser status
Possible values: [pending, active, suspended, archived]
]
next_cursorstringnullable
PageResponse_AdvertiserDto_
{
"items": [
{
"id": "3Kd7Np5RvM9qWx2T8yZ6",
"created_at": "2026-01-15T09:30:00Z",
"updated_at": "2026-01-15T09:30:00Z",
"name": "Acme Corp",
"description": "Consumer electronics manufacturer",
"website": "https://example.com",
"email": "ads@example.com",
"status": "pending"
}
],
"next_cursor": "string"
}