TA Finance
  1. Accounts
TA Finance
  • Welcome!
  • Auth check
    • Check
      GET
  • Transactions
    • List
      GET
    • Create
      POST
    • Delete
      DELETE
  • Statements
    • Info
  • Counterparty
    • Info
  • Services
    • List
      GET
    • Create
      POST
  • Accounts
    • List
      GET
    • Create
      POST
  • Organizations
    • List
      GET
    • Create
      POST
  • Statistics
    • P&L
      POST
  1. Accounts

List

GET
/api/v1/account/list
Retrieves a comprehensive list of financial accounts for a given organization, including essential details like account names and balances. This endpoint is crucial for effective account management.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Query Params

Responses

🟒200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/account/list' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "list": [
        {
            "id": 16,
            "name": "Π­Π²ΠΎΠΊΠ°",
            "balance": 1000,
            "organizationId": 26,
            "type": "BANK",
            "currency": "USD",
            "createdAt": "2025-03-31T14:30:34.106Z",
            "updatedAt": "2025-03-31T14:30:34.106Z"
        },
        {
            "id": 17,
            "name": "НаличныС",
            "balance": 0,
            "organizationId": 26,
            "type": "CASH",
            "currency": "USD",
            "createdAt": "2025-03-31T14:30:34.107Z",
            "updatedAt": "2025-03-31T14:30:34.107Z"
        }
    ]
}
Modified atΒ 2025-04-02 17:06:44
Previous
Create
Next
Create
Built with