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
Bodyapplication/json
Request Request Example
Shell
JavaScript
Java
Swift
curl--location'/api/v1/organization' \
--header'Authorization: Bearer <token>' \
--header'Content-Type: application/json' \
--data'[
{
"name": "My New Organization"
}
]'