Accounts
Overview
Create Asset Account
Request body:
- CustomersId: Id of the customer
- Name: Name of the account (max length 100)
- Asset: account asset
Response:
- CustomersId: Id of the customer
- CustomersReference: User set customer reference
- Account: Account object
- Id: Account Id
- Name: Name of the account
- RoutingNumber: Account routing number
- AccountNumber: Account number
- Reference: Account reference
- Asset: Account asset
- TotalBalance: Account total balance
- AvailableBalance: Account available balance
- PendingBalance: Account pending balance
- bSuppressed: is account suppressed
Possible validation errors:
- Required
- Invalid (field value invalid)
- Invalid_Length (field exceeds length limit (100))
- Account_Limit_Reached (account limit has been reached)
JWT Authorization header using the Bearer scheme.
Example: "Authorization: Bearer {token}"
Tokens can be generated using the /api/v1/public/auth/login endpoint.
One time pass for the request
OK
Bad Request
Possible Error Messages
Get Asset Account by ID
Request query:
- Id: Account Id
Response:
- Id: Account Id
- CustomersId: Id of customer to which the account belongs
- Name: Name of the account
- RoutingNumber: Account routing number
- AccountNumber: Account number
- Reference: Account reference
- Asset: Account asset
- TotalBalance: Account total balance
- AvailableBalance: Account available balance
- PendingBalance: Account pending balance
- bSuppressed: true if account is suppressed
- DateAdded: date account was added
JWT Authorization header using the Bearer scheme.
Example: "Authorization: Bearer {token}"
Tokens can be generated using the /api/v1/public/auth/login endpoint.
One time pass for the request
Success
Not Found
Get Manager Account Balances
Response:
- assetAccountId: Asset account ID
- asset: Asset account asset
- totalBalance: Total balance
- availableBalance: Total balance minus incoming pending transaction amounts
- pendingBalance: Sum of pending transaction amounts
JWT Authorization header using the Bearer scheme.
Example: "Authorization: Bearer {token}"
Tokens can be generated using the /api/v1/public/auth/login endpoint.
One time pass for the request
Success
Bad Request
List Asset Accounts for Customer
JWT Authorization header using the Bearer scheme.
Example: "Authorization: Bearer {token}"
Tokens can be generated using the /api/v1/public/auth/login endpoint.
One time pass for the request
OK
Bad Request
Success Response Example:
List Account Transactions
Request query:
- AccountsId: Account Id filter
- FromDate: From date filter
- ToDate: To date filter
- PageNumber: list page number (optional, default = 1)
- PageSize: list page size (optional, default = 10)
Response:
- array of
- Id: Transaction Id
- AccountsId: Transaction account Id
- Amount: Transaction amount
- Description: Transaction description
- DateTime: Transaction date
- bPending: Is transaction pending
- bCancellable: Is transaction cancellable
JWT Authorization header using the Bearer scheme.
Example: "Authorization: Bearer {token}"
Tokens can be generated using the /api/v1/public/auth/login endpoint.
One time pass for the request
OK
Not Found
Get Transaction Details
Last updated