Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Version History

Version 1 Current »

pre-requisites

Overview

Search for orders

Endpoint

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

Example Response:

  • Status: 200 OK

 GET https://api.adcellerant.com/product-listings?pageNumber=1&pageSize=25&authorizationId=1ad4ed2a-72e5-481a-a329-07db829e88ae
{
    "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

  • Authorization

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

  • No labels