Skip to main content
GET
/
api
/
v2
/
backoffice
/
savings
/
get-bridge-info
/
{accountId}
/
{type}
cURL
curl --request GET \
  --url https://sandbox.killb.app/api/v2/backoffice/savings/get-bridge-info/{accountId}/{type} \
  --header 'Authorization: Bearer <token>'
{
  "errorCode": "API_USER.0001",
  "arguments": [
    {
      "key": "email",
      "value": "[email protected]"
    }
  ],
  "message": [
    "User not found",
    "Account not found"
  ],
  "statusCode": "400"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

accountId
string
required
Example:

"449b31b4-fca5-465e-99ea-7b7b28cfbccb"

type
enum<string>
required
Available options:
ACH,
WIRE
Example:

"ACH"

Response

errorCode
string
required
Example:

"API_USER.0001"

arguments
object[]
required
message
string[]
required
Example:
["User not found", "Account not found"]
statusCode
string
required
Example:

"400"