Method: exchanges.orders.list
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
HTTP 要求
GET https://dv360seller.googleapis.com/v1beta1/{parent=exchanges/*}/orders
這個網址使用 gRPC 轉碼語法。
路徑參數
參數 |
parent |
string
父項資源名稱。例如:「exchanges/123」。必填。
|
查詢參數
參數 |
pageSize |
integer
傳回的項目數量上限。預設值為 50。允許的最大值為 200。如果未指定,則預設的頁面大小為 50。如果 pageSize 超過 200,系統會使用 200 做為頁面大小。
|
pageToken |
string
先前的 List 要求 (如果有的話) 傳回的 nextPageToken 值。
|
filter |
string
允許依產品屬性篩選。 支援的語法:
- 篩選器運算式由一或多個限制組成。
- 限制條件可以透過
AND 或 OR 邏輯運算子結合。一系列限制會隱含使用 AND 。
- 限制的格式為
<field> <operator> <value> 。
- status 和 displayName 的運算子必須為
EQUALS (=) 。
- 支援的欄位:
OrderStatus
DisplayName
UpdateTime
範例:
取得狀態設為「ACCEPTED」的訂單 status=ACCEPTED
取得顯示名稱為「display name」的訂單 displayName="display name"
取得更新時間大於「2024-02-12T18:47:29.784Z」的訂單 updateTime>"2024-02-12T18:47:29.784Z"
這個欄位的長度不得超過 500 個半形字元。
|
回應主體
回應清單訂單。
如果成功,回應主體會含有以下結構的資料:
JSON 表示法 |
{
"order": [
{
object (Order )
}
],
"nextPageToken": string
} |
欄位 |
order[] |
object (Order )
已列入清單的訂單。傳回的項目數量上限取決於要求中的 pageSize 欄位。
|
nextPageToken |
string
用來擷取下一頁結果的符記;如果清單中沒有其他結果,這個欄位會是空白的。
|
授權範圍
需要下列 OAuth 範圍:
https://www.googleapis.com/auth/doubleclickbidmanager
詳情請參閱 OAuth 2.0 Overview。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2025-07-25 (世界標準時間)。
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2025-07-25 (世界標準時間)。"],[],["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"]]