Method: buyers.auctionPackages.unsubscribeClients
Unsubscribe from the auction package for the specified clients of the buyer. Unsubscribing a client that is not subscribed will have no effect.
HTTP request
POST https://authorizedbuyersmarketplace.googleapis.com/v1/{auctionPackage=buyers/*/auctionPackages/*}:unsubscribeClients
The URL uses gRPC Transcoding syntax.
Path parameters
Parameters |
auctionPackage |
string
Required. Name of the auction package. Format: buyers/{accountId}/auctionPackages/{auctionPackageId}
|
Request body
The request body contains data with the following structure:
JSON representation |
{
"clients": [
string
]
} |
Fields |
clients[] |
string
Optional. A list of client buyers to unsubscribe from the auction package, with client buyer in the format buyers/{accountId}/clients/{clientAccountId} .
|
Response body
If successful, the response body contains an instance of AuctionPackage
.
Authorization scopes
Requires the following OAuth scope:
https://www.googleapis.com/auth/authorized-buyers-marketplace
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-01-06 UTC.
[null,null,["Last updated 2025-01-06 UTC."],[[["This endpoint enables unsubscribing specified clients from a given auction package within the Authorized Buyers Marketplace."],["The request requires specifying the auction package and a list of clients to unsubscribe, using their respective resource names."],["A successful response returns the updated AuctionPackage object reflecting the changes."],["The operation requires authorization with the `https://www.googleapis.com/auth/authorized-buyers-marketplace` scope."]]],["This content describes unsubscribing clients from an auction package via an API. The `POST` request is sent to a specific URL including the auction package's ID, formatted as `buyers/*/auctionPackages/*`. The request body contains a JSON list of client IDs to unsubscribe, structured as `buyers/{accountId}/clients/{clientAccountId}`. Successful requests return an `AuctionPackage` instance. This process uses gRPC Transcoding and requires the `authorized-buyers-marketplace` OAuth scope.\n"]]