Skip to content

BillptGetTaxes

Gets the tax rates configured in Bill.pt (VAT and others). Useful for obtaining the tax_id needed when creating items and tax documents.

FieldTypeRequiredDescription
credentials_idcredentialsYesBill.pt credential

This module requires a billpt type credential with the following fields:

  • API Token: Bill.pt API access token
{
"success": true,
"taxes": [
{ "id": 1, "name": "IVA 23%", "value": 23 },
{ "id": 2, "name": "IVA 13%", "value": 13 },
{ "id": 3, "name": "IVA 6%", "value": 6 }
],
"total": 3
}

GET /taxes - https://api.bill.pt

{}

No additional parameters required. Only the credential is needed.

  • Tax rates are configured in the Bill.pt dashboard
  • In Portugal, common VAT rates are: 23% (standard), 13% (intermediate), 6% (reduced)
  • The obtained tax_id is used when creating items and documents