Download account confirmation PDF
curl --request GET \
--url https://api.example.com/api/v1/transactions/export/account_confirmation/{bank_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/transactions/export/account_confirmation/{bank_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/api/v1/transactions/export/account_confirmation/{bank_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Exports
Download account confirmation PDF
Generate and return account confirmation (PDF or XLSX) for a Bank row.
GET
/
api
/
v1
/
transactions
/
export
/
account_confirmation
/
{bank_id}
Download account confirmation PDF
curl --request GET \
--url https://api.example.com/api/v1/transactions/export/account_confirmation/{bank_id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/transactions/export/account_confirmation/{bank_id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/api/v1/transactions/export/account_confirmation/{bank_id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Headers
Path Parameters
Query Parameters
Output format for the formal account documents (statement / confirmation).
Available options:
pdf, xlsx Response
Successful Response
Was this page helpful?