Organizations
Organization management endpoints
Retrieve all organizations for the current user
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Responses
200
Organizations retrieved successfully
application/json
401
Missing or invalid authentication token.
application/json
403
Insufficient permissions to list organizations.
application/json
404
No organizations found.
application/json
500
Internal server error occurred while retrieving organizations.
application/json
get
/api/v1/orgsRetrieve organization by ID
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Path parameters
org_idstringRequired
Organization ID
Responses
200
Organization retrieved successfully
application/json
400
Invalid organization ID format.
application/json
401
Missing or invalid authentication token.
application/json
403
Insufficient permissions to view organization details.
application/json
404
Organization not found with the provided ID.
application/json
500
Internal server error occurred while retrieving organization.
application/json
get
/api/v1/orgs/{org_id}Last updated