Page Summary
-
This page describes how to reject an existing line using an HTTP POST request.
-
The request requires path parameters to identify the line and query parameters for rejection details.
-
A successful rejection returns the updated line, while specific error codes are returned for non-existent lines or lines not in the pending reservation state.
-
The request body must be empty, and the response body contains an instance of the updated line.
-
Authorization requires the
https://www.googleapis.com/auth/doubleclickbidmanagerOAuth scope.
- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization Scopes
- Examples
Rejects an existing line.
- Returns the updated line if successful.
- Returns error code
NOT_FOUNDif the line does not exist. - Returns error code
FAILED_PRECONDITIONif lineState is notLINE_STATE_PENDING_RESERVATION.
HTTP request
POST https://dv360outofhomeseller.googleapis.com/v1beta1/{name=orders/*/lines/*}:reject
The URL uses gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
name |
The field will contain name of the line to be rejected, for example: "orders/123/lines/321" |
Query parameters
| Parameters | |
|---|---|
rejection |
Required. The rejection details for the line. |
Request body
The request body must be empty.
Response body
If successful, the response body contains an instance of Line.
Authorization Scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/doubleclickbidmanager
For more information, see the OAuth 2.0 Overview.