Method: exchanges.orders.list
Stay organized with collections
Save and categorize content based on your preferences.
HTTP request
GET https://dv360seller.googleapis.com/v1beta1/{parent=exchanges/*}/orders
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters |
parent |
string
The parent resource name. Example: "exchanges/123". Required.
|
Query parameters
Parameters |
pageSize |
integer
The maximum number of items to return. Defaults to 50. Max allowed value is 200. If unspecified, 50 will be default page size. If pageSize is more than 200, will use 200 as page size.
|
pageToken |
string
The nextPageToken value returned from a previous List request, if any.
|
filter |
string
Allows filtering by product properties. Supported syntax:
- Filter expressions are made up of one or more restrictions.
- Restrictions can be combined by
AND or OR logical operators. A sequence of restrictions implicitly uses AND .
- A restriction has the form of
<field> <operator> <value> .
- The operator for status and displayName must be
EQUALS (=) .
- Supported fields:
OrderStatus
DisplayName
UpdateTime
Examples:
Get Orders with status set to "ACCEPTED" status=ACCEPTED
Get Orders with display name of "display name" displayName="display name"
Get Orders with update time greater than "2024-02-12T18:47:29.784Z" updateTime>"2024-02-12T18:47:29.784Z"
The length of this field should be no more than 500 characters.
|
Request body
The request body must be empty.
Response body
Response to list order.
If successful, the response body contains data with the following structure:
JSON representation |
{
"order": [
{
object (Order )
}
],
"nextPageToken": string
} |
Fields |
order[] |
object (Order )
Listed orders. There will be a maximum number of items returned based on the pageSize field in the request.
|
nextPageToken |
string
Token to retrieve the next page of results, or empty if there are no more results in the list.
|
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/doubleclickbidmanager
For more information, see the OAuth 2.0 Overview.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2025-05-21 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-05-21 UTC."],[[["Lists existing orders for a given exchange."],["Allows filtering by order status, display name, and update time."],["Supports pagination to retrieve large result sets."],["Requires `doubleclickbidmanager` authorization scope."],["Response includes order details and a token for retrieving the next page."]]],["This API lists orders using a `GET` request to a specific URL that includes a required `parent` path parameter (e.g., \"exchanges/123\"). It supports optional query parameters: `pageSize` (default 50, max 200), `pageToken` for pagination, and `filter` to narrow down orders by `OrderStatus`, `DisplayName`, or `UpdateTime`. The request body must be empty. The response body includes an array of `order` objects and a `nextPageToken` for subsequent pages, the user needs the scope `https://www.googleapis.com/auth/doubleclickbidmanager`.\n"]]