List tax rates

Returns all tax rates. Tax rates are sorted in order, with the most recent tax rates appearing first.

GET/v1/tax-rates/

Authorization

api_key_auth
AuthorizationBearer <token>

API key authentication. Use "Bearer YOUR_API_KEY" format.

In: header

Response Body

application/json

curl -X GET "https://api.checkoutpage.com/v1/tax-rates/"
{
  "data": [
    {
      "id": "string",
      "sellerId": "string",
      "stripeId": "string",
      "displayName": "VAT",
      "inclusive": true,
      "percentage": 20,
      "default": false,
      "createdAt": "2019-08-24T14:15:22Z",
      "updatedAt": "2019-08-24T14:15:22Z"
    }
  ]
}