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

List

GET
/api/v1/organization/list
Fetches a list of organizations registered in the system, providing insights into various financial entities managed by the platform. This endpoint aids in overall organizational oversight.

Request

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

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/organization/list' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
  "list": [
    {
      "id": 26,
      "name": "My Company",
      "createdAt": "2025-03-31T14:30:34.103Z",
      "updatedAt": "2025-03-31T14:30:34.103Z"
    }
  ]
}
Modified at 2025-04-02 17:07:13
Previous
Create
Next
Create
Built with