latestOpenAPI 3.0.12026-08-101292701.1 MB

f21981db32be

Sales summaries

Returns a list of sales summaries

Get all sales summaries.

get/sales-summaries

Query parameters

createdTimeobject

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
endingBeforestring

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.

startingAfterstring

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.

idsstring[]

Only return objects with these IDs.

limitinteger

A limit on the number of objects returned. Limit can range between 1 and 5000, and the default is 10.

salesClosingTimeobject

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
paidstring

Only return sales summaries which have been paid

payoutIdstring

Only return sales summaries with this payout identifier

currencystring

Only return sales summaries in the given currency

amountobject

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
payerIdstring

Only return sales summaries with this payer identifier

payerNamestring

Only return sales summaries with this payer name

payeeIdstring

Only return sales summaries with this payee identifier

payeeNamestring

Only return sales summaries with this payee name

Response

200 OK

hasMoreboolean

Whether or not there are more elements available after this set. If false this set represents the end of the list.

Example response

{
  "hasMore": true,
  "data": [
    {
      "id": "8100000400_1410_2019",
      "createdTime": "2019-04-25T20:36:00Z",
      "salesClosingTime": "2019-04-25T00:00:00Z",
      "currency": "USD",
      "amount": 1180.26,
      "payoutId": "2000028600_1410_2019",
      "paid": true,
      "payerId": "1410",
      "payerName": "DR globalTech, Inc.",
      "payeeId": "0013900100",
      "payeeName": "ACME, Inc.",
      "liveMode": true
    }
  ]
}