GET
/
tax-report
curl --request GET \
  --url https://api.sellburst.io/v1/tax-report \
  --header 'Authorization: Bearer <token>'
[
  {
    "products": [
      {
        "id": 1,
        "name": "Product 1",
        "variant": "Week",
        "price": 10
      }
    ],
    "gateway": "stripe",
    "order_uuid": "03850cee-ef04-43f8-8434-fb59d3ab2218",
    "customer_email": "user@example.com",
    "customer_country": "US",
    "sub_total": 10,
    "paid_at": "2024-04-21T14:38:05",
    "created_at": "2024-04-21T15:27:08"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Merchant
string

The Store Name you want to select

Query Parameters

StartDate
string

Timestamp of when the report starts

EndDate
string

Timestamp of when the report ends

Gateways
any[]

Possible values: stripe, paypal, square, hoodpay, mercado_pago, paypal_fnf, coinremitter, oxapay

Response

200
application/json
Order data
products
object[]
gateway
string
order_uuid
string
customer_email
string
customer_country
string
sub_total
number
paid_at
string
created_at
string