PRODUCT

Amazon Ad Server will be sunset in Q4 2024, please visit this page (AAS offboarding information) for offboarding support resources and sunset FAQs. Details shared on that page represent the most up to date information in the Help Center, if you find disparate information in other resources please default to the information in the AAS offboarding information page accordingly.

Please note that on October 1, 2024, the ability to create new campaigns, placements, and tag managers will be disabled.

Follow

Overview

You can use the site resource to retrieve a set of sites, retrieve a specific site, retrieve sections from a specific site, and create site sections for a specific site.

Resource URL

https://adapi.sizmek.com/sas/sites/global

Objects Used by This Resource

HTTP Method and URI List

HTTP Method

URI

Description

GET

/sites/global

Retrieves multiple sites.

GET

/sites/global/{Id}

Retrieves a specific sites.

GET

/siteSections/global

Retrieves multiple site sections.

Method Examples and Request Parameters

Important

Important:

  • For PUT calls, do the following:

    • For any PUT method that updates an object, make sure that you include the entire "result": object from the GET response in the request body. If there is missing information, even if it is read-only, the request might fail or override the existing fields with the new values.

    • You must also change the "result": to "entities": and make the entities contents into an array. For example, here is the output from the GET request:

       { "result": { "type": "Advertiser", ... } }      

      You should make the following modifications, including your specific modifications, to the json object that you submit for the request.

       { "entities": [{ "type": "Advertiser", ... }] }   
      
  • For POST calls, do the following:

    • Include the fields marked as Required, as indicated in the corresponding Object article.

    • Format the JSON object as follows:

       { "entities": [{ "type": "Advertiser", ... }] }   

Get Multiple Sites

Retrieves multiple Sites.

Request Query Parameters

Name

Description

Type

Required

Notes

advertiserId

Retrieves all sites under the specific advertiser.

Long

Optional

from

Starting index by which to fetch new sites for paging purposes.

Long

Required

Getting multiple entities requires using from and max query parameters.

max

Maximum number of sites to fetch for each page.

Long

Required

accountId

ID of account.

Long

Optional

sort

Sort by field name (see here).

String

Optional

order

Sort order ASC or DESC, required if sort field name is specified (see here).

String

Optional

Note

Note: Required if a sort field name is specified.

By default, the API response is ascending.

q

Filtering options for the request (see here).

String

Optional

Example of query string: q={"1":{"NAME":["Test"]}}

Note

Note: The date is according to the Unix epoch timestamp.

advertiserId

ID of advertiser.

Long

Optional

Request Format

GET https://adapi.sizmek.com/sas/sites/global?from=0&max=250

Response Format

A successful request returns the HTTP 200 OK status code and a JSON response body that shows the sites' details filtered by data ownership.

Get a Site

Retrieves a specific site.

Request Parameters

Name

Description

Type

Required

Notes

id

ID of the requested site

Integer

Required

Request Format

GET https://adapi.sizmek.com/sas/sites/1234567890

Response Format

A successful request returns the HTTP 200 OK status code and a JSON response body that shows the site details filtered by data ownership. If there is no site or data ownership, the request returns an empty response.

Get a Site Section

Retrieves a specific site section.

Request Parameters

Name

Description

Type

Required

Notes

id

ID of the requested site

Integer

Required

Request Format

GET https://adapi.sizmek.com/sas/siteSections/global?from=0&max=250&order=asc&siteId=1231231231&sort=name

Response Format

A successful request returns the HTTP 200 OK status code and a JSON response body that shows the site details filtered by data ownership. If there is no site or data ownership, the request returns an empty response.

Was this article helpful?
0 out of 0 found this helpful
Have more questions? Submit a request

Comments