Retrieve banking details
GET/baas/virtual-accounts/banking-details/:walletId
This endpoint returns the virtual account details related to a specified wallet:
Request
Path Parameters
walletId stringrequired
Query Parameters
type string
Possible values: [SWIFT
, ACH
, FEDWIRE
]
Type of banking details to retrieve (defaults to SWIFT if not provided)
Responses
- 200
- 400
- 403
- 404
Banking details retrieved with success.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
data
object
swift stringrequired
SWIFT BIC code
account_number stringrequired
Account number
bank_address stringrequired
Bank address
beneficiary stringrequired
Beneficiary name
{
"traceId": "string",
"message": "string",
"data": {
"swift": "ZEITPRSJXXX",
"account_number": "256783259046169",
"bank_address": "CITI TOWER, 252 AVE PONCE DE LEON, FLOOR 19, SAN JUAN, SAN JUAN, 00918",
"beneficiary": "John Doe"
}
}
Invalid request payload. This can happen if required fields are missing or have invalid formats.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
{
"traceId": "string",
"message": "string"
}
The API key is invalid or the client does not have sufficient permissions.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
{
"traceId": "string",
"message": "string"
}
One of the specified resources was not found. Does not apply for empty result set.
- application/json
- Schema
- Example (from schema)
Schema
traceId string
message string
{
"traceId": "string",
"message": "string"
}
Loading...