Summaries

The Statements API is only available for credit cards issued in Argentina and for those who have not implemented the Credits solution, which means they have not contracted the lending engine

Calculate Taxes

The endpoint /taxes/v1/statements is used to initiate the tax calculation for a billing period.

Considerations

Please specify the card's public ID and the period for which taxes will be calculated

Available parameters
Header Parameters
Authorizationstringrequired
Example: Bearer {access_token}
x-idempotency-keystringrequired
Unique ID in each request to utilize our idempotency scheme.
Example: fRwX12Dg3345AD
Body Parameters
card_idstringrequired
Example: crd-20MpN8vmIPj77ujhb9cS8ctstN2
fromstringrequired
ISO 8601
Example: 2023-04-01
tostringrequired
ISO 8601
Example: 2023-04-31
Response details
dataobject

Was this section helpful to you?

POST/taxes/v1/statements/
{
"card_id":
"crd-20MpN8vmIPj77ujhb9cS8ctstN2"
"from":
"2023-04-01"
"to":
"2023-04-31"
}
Response examples
{
"data":{
"statement_id":
"stm-2PIy4e9vLPKjiFt4nzpCvAUlgke"
"status":
"PENDING"
"from":
"2023-04-01"
"to":
"2023-04-31"
"card_id":
"crd-20MpN8vmIPj77ujhb9cS8ctstN2"
"currency_rate":
"200.00"
"markup":
"250"
"amount":{
...
}
}
}

Retrieve taxes

The endpoint /taxes/v1/statements/{statement_id} is used to retrieve the taxes applied to a card during a specific billing period.

Considerations

Please provide the statement_id corresponding to the billing period for which you wish to obtain the applied taxes.

Available parameters
Header Parameters
Authorizationstringrequired
Example: Bearer {access_token}
Path Parameters
statement_idstringrequired
Calculation Id
Response details
dataobject

Was this section helpful to you?

GET/taxes/v1/statements/{statement_id}
Response examples
{
"data":{
"statement_id":
"stm-2PIy4e9vLPKjiFt4nzpCvAUlgke"
"status":
"PENDING"
"from":
"2023-04-01"
"to":
"2023-04-31"
"card_id":
"crd-20MpN8vmIPj77ujhb9cS8ctstN2"
"currency_rate":
"200.00"
"markup":
"250"
"amount":{
...
}
}
}