List organizations for the user
GET/api/v1/organizations
List organizations for the user
Request
Header Parameters
X-API-KEY stringrequired
APIKey
Responses
- 200
- 404
- 500
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
createdAt string
createdAt is the creation time of the organization.
id string
id is the unique identifier of the organization.
name string
name is the name of the organization.
orgNamespace string
orgNamespace is the organization namespace.
owner boolean
owner is the organization owner.
slug string
slug is the organization slug.
id string
message string
status string
{
"data": [
{
"createdAt": "string",
"id": "string",
"name": "string",
"orgNamespace": "string",
"owner": true,
"slug": "string"
}
],
"id": "string",
"message": "string",
"status": "string"
}
organization not found
- application/json
- Schema
- Example (from schema)
Schema
error string
error_code string
{
"error": "string",
"error_code": "string"
}
internal server error
- application/json
- Schema
- Example (from schema)
Schema
error string
error_code string
{
"error": "string",
"error_code": "string"
}
Loading...