Sales summaries
Sales Summaries provide a comprehensive overview of your transaction data daily. Managed and compiled by Digital River, these summaries offer easy access to detailed sales information, empowering businesses to monitor and analyze their financial performance effortlessly. Users can retrieve specific sales summaries or access a complete list to gain insights into daily sales activity, enabling data-driven decisions and strategic planning.
Get all sales summaries.
A filter on the list based on the createdTime field. The value can be a string with an ISO-8601 UTC format datetime or it can be a dictionary with the following options:
- gt–return values where the createdTime field is after this timestamp
- gte–return values where the createdTime field is after or equal to this timestamp
- lt–return values where the createdTime field is before this timestamp
- lte–return values where the createdTime field is before or equal to this timestamp
A cursor for use in pagination. The endingBefore parameter is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, starting with xyz your subsequent calls can include endingBefore=xyz in order to fetch the previous page of the list.
A cursor for use in pagination. The startingAfter parameter is an object ID that defines your place in the list. For instance, if you make a list request and receive 100 objects, ending with xyz, your subsequent calls can include startingAfter=xyz in order to fetch the next page of the list.
A limit on the number of objects returned. Limit can range between 1 and 100, and the default is 10.
Only return objects with these IDs.
A filter on the list based on the sales summary salesClosingTime field. The value can be a string with an ISO-601 UTC format datetime or it can be a dictionary with the following options:
- gt - return values where the salesClosingTime field is after this timestamp
- gte - return values where the salesClosingTime field is after or equal to this timestamp
- lt - return values where the salesClosingTime field is before this timestamp
- lte - return values where the salesClosingTime field is before or equal to this timestamp
Only return sales summaries which have been paid
Only return sales summaries with this payout identifier
Only return sales summaries in the given currency
A filter on the list based on the sales summaries amount field. The value can be a string or it can be a dictionary with the following options:
- gt - return values where the amount field is greater than this amount
- gte - return values where the amount field is greater than or equal to this amount
- lt - return values where the amount field is less than this amount
- lte - return values where the amount field is less than or equal to this amount
Only return sales summaries with this payer identifier
Only return sales summaries with this payer name
Only return sales summaries with this payee identifier
Only return sales summaries with this payee name
200 OK
400 Bad Request
401 Unauthorized
403 Forbidden
405 Method Not Allowed
406 Not Acceptable
408 Request Timeout
429 Too Many Requests
500 Internal Server Error
502 Bad Gateway Error
503 Service Unavailable Error
504 Gateway Timeout Error
GET /sales-summaries HTTP/1.1
Host: api.digitalriver.com
Accept: */*
{
"hasMore": true,
"data": [
{
"id": "8100000400_1410_2019",
"createdTime": "2025-09-15T21:45:11.916Z",
"salesClosingTime": "2025-09-15T21:45:11.916Z",
"currency": "USD",
"amount": 1180.26,
"payoutId": "2000028600_1410_2019",
"paid": true,
"payerId": "1410",
"payerName": "DR globalTech, Inc.",
"payeeId": "0013900100",
"payeeName": "ACME, Inc.",
"liveMode": true
}
]
}
Retrieves the details of a sales summary. Supply the unique identifier of the sales summary.
Sales summary ID
OK.
400 Bad Request
401 Unauthorized
403 Forbidden
404 Not Found
405 Method Not Allowed
406 Not Acceptable
408 Request Timeout
429 Too Many Requests
500 Internal Server Error
502 Bad Gateway Error
503 Service Unavailable Error
504 Gateway Timeout Error
GET /sales-summaries/{id} HTTP/1.1
Host: api.digitalriver.com
Accept: */*
{
"id": "8100000400_1410_2019",
"createdTime": "2025-09-15T21:45:11.916Z",
"salesClosingTime": "2025-09-15T21:45:11.916Z",
"currency": "USD",
"amount": 1180.26,
"payoutId": "2000028600_1410_2019",
"paid": true,
"payerId": "1410",
"payerName": "DR globalTech, Inc.",
"payeeId": "0013900100",
"payeeName": "ACME, Inc.",
"liveMode": true
}
Last updated