cURL
curl --request GET \ --url https://api-m.sandbox.paypal.com/v1/commerce/billing/taxes \ --header 'Authorization: Bearer <token>'
{ "taxes": [ { "id": "1a901a90-1a90-1a90-1a90-1a901a901a90", "name": "Standard VAT", "code": "standard_vat", "description": "Standard Value Added Tax", "rate": "20.00", "created_at": "2023-07-06T14:35:58Z" }, { "id": "2b902b90-2b90-2b90-2b90-2b902b902b90", "name": "Reduced VAT", "code": "reduced_vat", "description": "Reduced Value Added Tax", "rate": "5.00", "created_at": "2023-07-06T14:45:23Z" } ], "meta": { "total_count": 2, "total_pages": 1, "current_page": 1 } }
Retrieves a paginated list of all taxes
Use the /v1/oauth2/token endpoint to obtain an access token and pass it as a Bearer token in the Authorization header.
Page number
Number of records per page
Successfully retrieved taxes
Paginated list of tax objects
Show child attributes
Was this page helpful?