Method: advertisers.insertionOrders.get
Gets an insertion order. Returns error code NOT_FOUND
if the insertion order does not exist.
HTTP request
GET https://displayvideo.googleapis.com/v3/advertisers/{advertiserId}/insertionOrders/{insertionOrderId}
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters |
advertiserId |
string (int64 format)
Required. The ID of the advertiser this insertion order belongs to.
|
insertionOrderId |
string (int64 format)
Required. The ID of the insertion order to fetch.
|
Request body
The request body must be empty.
Response body
If successful, the response body contains an instance of InsertionOrder
.
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/display-video
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-02-25 UTC.
[null,null,["Last updated 2025-02-25 UTC."],[[["Retrieves a specific insertion order belonging to a given advertiser using a GET request."],["Requires providing the advertiser ID and insertion order ID as path parameters in the request URL."],["Returns the details of the insertion order, including its properties and settings, in the response body if found."],["If the insertion order is not found, the API will return a `NOT_FOUND` error code."],["Requires authorization with the `https://www.googleapis.com/auth/display-video` scope."]]],["This document details how to retrieve an insertion order using a GET request. The request URL requires two path parameters: `advertiserId` and `insertionOrderId`, both of which are string-formatted 64-bit integers and are mandatory. The request body must be empty. A successful request returns an `InsertionOrder` instance in the response body; otherwise, `NOT_FOUND` will be returned. Authorization requires the `https://www.googleapis.com/auth/display-video` OAuth scope.\n"]]