curl --request GET \
--url https://api.hyperline.co/v1/bank-accounts/{id} \
--header 'Authorization: Bearer <token>'
{
"format": "iban_bic_swift",
"iban": "FR76XXXXXXXXXXXXXXXXXXXXXXX",
"bic_swift": "XXXXXXXX"
}
Retrieve a specific bank account by ID.
curl --request GET \
--url https://api.hyperline.co/v1/bank-accounts/{id} \
--header 'Authorization: Bearer <token>'
{
"format": "iban_bic_swift",
"iban": "FR76XXXXXXXXXXXXXXXXXXXXXXX",
"bic_swift": "XXXXXXXX"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
The response is of type object
.
Was this page helpful?