GET
/
tax
/
products
curl --request GET \
  --url https://api.numeralhq.com/tax/products \
  --header 'Authorization: Bearer <token>'
{
  "last_product_id": "p-20507",
  "products": [
    {
      "object": "tax.product",
      "reference_product_id": "p-20506",
      "reference_product_name": "Red T-Shirt",
      "product_category": "CLOTHING",
      "created_at": 1721951003,
      "updated_at": 1721951003,
      "testmode": true
    },
    {
      "object": "tax.product",
      "reference_product_id": "p-20507",
      "reference_product_name": "Blue T-Shirt",
      "product_category": "CLOTHING",
      "created_at": 1721951003,
      "updated_at": 1721951003,
      "testmode": true
    }
  ],
  "has_more": false
}

Authorizations

Authorization
string
header
required

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

Query Parameters

cursor
string

The product ID to start pagination from. This is the last product ID retrieved from the previous list request. An example path looks like /tax/products?cursor=p-20506

Response

200
application/json
List of products
has_more
boolean

This will be either true or false depending on if there are more products to be returned in the next request.

last_product_id
string

The ID of the last product returned in the response. This can be used as a cursor for pagination.

products
object[]