curl --request GET \
--url https://api.hyperline.co/v1/bank-accounts \
--header 'Authorization: Bearer <token>'
{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0
},
"data": [
{
"format": "iban_bic_swift",
"iban": "FR76XXXXXXXXXXXXXXXXXXXXXXX",
"bic_swift": "XXXXXXXX"
}
]
}
Retrieve all bank accounts.
curl --request GET \
--url https://api.hyperline.co/v1/bank-accounts \
--header 'Authorization: Bearer <token>'
{
"meta": {
"total": 1,
"taken": 1,
"skipped": 0
},
"data": [
{
"format": "iban_bic_swift",
"iban": "FR76XXXXXXXXXXXXXXXXXXXXXXX",
"bic_swift": "XXXXXXXX"
}
]
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
0 <= x <= 100
x >= 0
The response is of type object
.
Was this page helpful?