TA Finance
  1. Organizations
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. Organizations

Create

POST
/api/v1/organization
Registers a new organization by capturing the necessary organizational details. This operation allows for the structured grouping and management of financial data under distinct entities.

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/organization' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '[
    {
        "name": "My New Organization"
    }
]'
Response Response Example
{
  "done": true,
  "created": [
    30
  ]
}
Modified at 2025-04-02 17:07:23
Previous
List
Next
P&L
Built with