AI-generated Key Takeaways
-
This page details how to edit read advertisers of a guaranteed order using the Display & Video 360 API v3, though v3 has sunset and v4 should be used instead.
-
The request is a POST to
https://displayvideo.googleapis.com/v3/guaranteedOrders/{guaranteedOrderId}:editGuaranteedOrderReadAccessors
, requiring theguaranteedOrderId
path parameter. -
The request body allows specifying a
partnerId
,readAccessInherited
,addedAdvertisers
, andremovedAdvertisers
. -
The response body includes
readAccessInherited
and a list ofreadAdvertiserIds
. -
The required authorization scope for this operation is
https://www.googleapis.com/auth/display-video
.
Edits read advertisers of a guaranteed order.
HTTP request
POST https://displayvideo.googleapis.com/v3/guaranteedOrders/{guaranteedOrderId}:editGuaranteedOrderReadAccessors
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters | |
---|---|
guaranteedOrderId |
Required. The ID of the guaranteed order to edit. The ID is of the format |
Request body
The request body contains data with the following structure:
JSON representation |
---|
{ "partnerId": string, "readAccessInherited": boolean, "addedAdvertisers": [ string ], "removedAdvertisers": [ string ] } |
Fields | |
---|---|
partnerId |
Required. The partner context in which the change is being made. |
readAccessInherited |
Whether to give all advertisers of the read/write accessor partner read access to the guaranteed order. Only applicable if |
addedAdvertisers[] |
The advertisers to add as read accessors to the guaranteed order. |
removedAdvertisers[] |
The advertisers to remove as read accessors to the guaranteed order. |
Response body
If successful, the response body contains data with the following structure:
JSON representation |
---|
{ "readAccessInherited": boolean, "readAdvertiserIds": [ string ] } |
Fields | |
---|---|
readAccessInherited |
Whether all advertisers of |
readAdvertiserIds[] |
The IDs of advertisers with read access to the guaranteed order. |
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/display-video
For more information, see the OAuth 2.0 Overview.