Retrieve Account Information Via account_id

Specifications

Request


JSON PATHDescriptionExampleFormatRequired
client_idIdentifier associated to you15bfc289-de75-4668-bb11-3998aadf226dUUIDNo
account_idThe Identifier associated to Accountfcd0cecb-90dd-4ae2-879f-d0eda6fbddd4UUIDYes

Response


JSON PATHDescriptionExampleFormatRequired
account_idThe Identifier associated to Accountfcd0cecb-90dd-4ae2-879f-d0eda6fbddd4UUIDYes
account_profile_idThe Identifier of the Account Profile the Account is associated with84b1625e-f6d4-4d05-8b10-9d84ea42d292UUIDYes
account_currencyThe currency of the account826stringYes
account_typeThe type of Account. Single or MultisinglestringYes
behaviour_idThe Identifier of the Behaviour to be associated with the account_id0c84b219-6b5a-4296-85db-e3b5bbcdca52UUIDNo
account_balanceThe total balance of the account. This is not the amount that can be spent. A minus figure indicates a debit balance1000stringYes
account_balance_directionCredit means a positive balance, whereas Debit means the balance is in negativeCreditstringYes
available_account_balanceThe value that is available to be spent1000stringYes
available_account_balance_directionCredit means a positive balance, whereas Debit means the balance is in negativeCreditstringYes
pending_authorized_amountThe total amount of authorized spend if applicable1000stringYes
trace_idThe Identifier associated with the API15bfc289-de75-4668-bb11-3998aadf226dUUIDYes

Example

{
    "account_id": "fcd0cecb-90dd-4ae2-879f-d0eda6fbddd4",
    "account_profile_id": "84b1625e-f6d4-4d05-8b10-9d84ea42d292",
    "account_currency": "826",
    "account_type": "single",
    "behaviour_id": "0c84b219-6b5a-4296-85db-e3b5bbcdca52",
    "account_balance": "400",
    "account_balance_driection": "credit",
    "avalible_account_balance": "100",
    "avaliable_account_balance_direction": "credit",
    "pending_authorized_amount": "300",
    "trace_id": "15bfc289-de75-4668-bb11-3998aadf226d"
}