- HTTP request
- Path parameters
- Query parameters
- Request body
- Response body
- Authorization Scopes
- OrderReportTransaction
- ProductAmount
- Try it!
Retrieves a list of transactions for a disbursement from your Merchant Center account.
HTTP request
GET https://shoppingcontent.googleapis.com/content/v2.1/{merchantId}/orderreports/disbursements/{disbursementId}/transactions
Path parameters
Parameters | |
---|---|
merchantId |
The ID of the account that manages the order. This cannot be a multi-client account. |
disbursementId |
The Google-provided ID of the disbursement (found in Wallet). |
Query parameters
Parameters | |
---|---|
maxResults |
The maximum number of disbursements to return in the response, used for paging. |
pageToken |
The token returned by the previous request. |
transactionStartDate |
The first date in which transaction occurred. In ISO 8601 format. |
transactionEndDate |
The last date in which transaction occurred. In ISO 8601 format. Default: current date. |
Request body
The request body must be empty.
Response body
If successful, the response body contains data with the following structure:
JSON representation |
---|
{
"nextPageToken": string,
"transactions": [
{
object ( |
Fields | |
---|---|
nextPageToken |
The token for the retrieval of the next page of transactions. |
transactions[] |
The list of transactions. |
kind |
Identifies what kind of resource this is. Value: the fixed string " |
Authorization Scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/content
For more information, see the OAuth 2.0 Overview.
OrderReportTransaction
JSON representation |
---|
{ "merchantId": string, "disbursementId": string, "disbursementDate": string, "disbursementCreationDate": string, "disbursementAmount": { object ( |
Fields | |
---|---|
merchantId |
The ID of the managing account. |
disbursementId |
The ID of the disbursement. |
disbursementDate |
The date the disbursement was initiated, in ISO 8601 format. |
disbursementCreationDate |
The date the disbursement was created, in ISO 8601 format. |
disbursementAmount |
The disbursement amount. |
orderId |
The ID of the order. |
merchantOrderId |
Merchant-provided ID of the order. |
transactionDate |
The date of the transaction, in ISO 8601 format. |
productAmount |
Total amount for the items. |
ProductAmount
JSON representation |
---|
{ "priceAmount": { object ( |
Fields | |
---|---|
priceAmount |
The pre-tax or post-tax price depending on the location of the order. |
taxAmount |
Tax value. |
remittedTaxAmount |
Remitted tax value. |