Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

pre-requisites

Overview

Search for orders

...

Tip

GET https://api.adcellerant.com/product-listings

Example

...

  • Status: 200 OK

...

Request

Code Block
GET https://api.adcellerant.com/product-listings?pageNumber=1&pageSize=25&authorizationId=1ad4ed2a-72e5-481a-a329-07db829e88ae

Example Response

  • Status: 200 OK

Expand
titleResponse Body
Code Block
{
    "pageNumber": 1,
    "pageSize": 25,
    "totalPages": 4,
    "totalCount": 85,
    "results": [
        {
            "name": "DID Video",
            "goalTypes": [
                "IMPRESSION"
            ],
            "rateCardId": 12345,
            "enabledForAllAdvertisers": true,
            "enabledAdvertiserIds": [],
            "rates": [
                {
                    "id": 12345,
                    "description": null,
                    "billingType": "CPM",
                    "retailAmount": 26.0,
                    "wholesaleAmount": 16.0,
                    "monthlyBudgetMinimum": 0.0,
                    "monthlyImpressionMinimum": 40000.0,
                    "flightMinimum": 0.0
                }
            ]
        },
        ...
    ]
}

Header Specifications

header

value

Authorization

Basic <your encoded value>

Input Specifications

Field

Description

pageNumber (query param)

The page of orders to return. Value must be greater than 0. Defaults to 1.

pageSize (query param)

The number of orders to return per page. Value must be between 1 and 50. Defaults to 25.

authorizationId (query param)

The uid that authorizes access to specific orders.

Output Specifications