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

Create

POST
/api/v1/account
Registers a new financial account with initial settings such as name, balance, and type. It ensures that the account is properly integrated into the organization’s financial structure.

Request

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

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/api/v1/account' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '[
    {
        "name": "My bank",
        "balance": 10000,
        "organizationId": 26,
        "type": "BANK",
        "currency": "USD"
    }
]'
Response Response Example
{
  "done": true,
  "created": [
    20
  ]
}
Modified at 2025-04-03 19:46:24
Previous
List
Next
List
Built with