Skip to main content

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: 3Kd7Np5RvM9qWx2T8yZ6
    created_atdate-time

    Timestamp when the advertiser was created

    Example: 2026-01-15T09:30:00Z
    updated_atdate-time

    Timestamp when the advertiser was last updated

    Example: 2026-01-15T09:30:00Z
    namestring

    Name of the advertiser

    Example: Acme Corp
    descriptionstringnullable

    Free-text description of the advertiser

    Example: Consumer electronics manufacturer
    websitestringnullable

    Advertiser's website URL

    Example: https://example.com
    emailstring

    Primary contact email for the advertiser

    Example: ads@example.com
    statusstring

    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"
    }