Page Summary
-
The API allows retrieval of a list of
Orderobjects from a specified network. -
The HTTP request method is GET and the endpoint includes the parent network code.
-
Optional query parameters like
pageSize,pageToken,filter,orderBy, andskipcan be used to control the response. -
The response body contains a list of
Orderobjects, a token for the next page, and the total size of the results. -
Authorization requires the
https://www.googleapis.com/auth/admanagerOAuth scope.
- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization scopes
- Try it!
API to retrieve a list of Order
objects.
Fields used for literal matching in filter string: * orderId
* displayName
* externalOrderId
HTTP request
GET https://admanager.googleapis.com/v1/{parent}/orders
Path parameters
| Parameters | |
|---|---|
parent
|
Required. The parent, which owns this collection of Orders. Format: |
Query parameters
pageSize
integer
Optional. The maximum number of Orders
to return. The service may return fewer than this value. If unspecified, at most 50 Orders
will be returned. The maximum value is 1000; values greater than 1000 will be coerced to 1000.
pageToken
string
Optional. A page token, received from a previous orders.list
call. Provide this to retrieve the subsequent page.
When paginating, all other parameters provided to orders.list
must match the call that provided the page token.
filter
string
Optional. Expression to filter the response. See syntax details at https://developers.google.com/ad-manager/api/beta/filters
Filterable fields:
-
advertiser -
agency -
appliedTeams -
archived -
creator -
displayName -
endTime -
externalOrderId -
name -
orderId -
poNumber -
programmatic -
salesperson -
secondarySalespeople -
secondaryTraffickers -
startTime -
status -
trafficker -
updateTime
orderBy
string
Optional. Expression to specify sorting order. See syntax details at https://developers.google.com/ad-manager/api/beta/filters#order
skip
integer
Optional. Number of individual resources to skip while paginating.
Request body
The request body must be empty.
Response body
Response object for ListOrdersRequest
containing matching Order
resources.
If successful, the response body contains data with the following structure:
| JSON representation |
|---|
{
"orders"
:
[
{
object (
|
| Fields | |
|---|---|
orders[]
|
The |
nextPageToken
|
A token, which can be sent as |
totalSize
|
Total number of For more information, see https://developers.google.com/ad-manager/api/beta/field-masks |
Authorization scopes
Requires one of the following OAuth scopes:
-
https://www.googleapis.com/auth/admanager -
https://www.googleapis.com/auth/admanager.readonly
For more information, see the OAuth 2.0 Overview .

