Skip to content

List all organizations

GET
/api/v1/organizations
curl --request GET \
--url https://localhost:10001/api/v1/organizations \
--header 'Authorization: <Authorization>'

Retrieve a list of all organizations

Organizations

Media type application/json
Array<object>
object
auth0Id

Deprecated: use IDPOrgID

string
createdAt
string
description
string
displayName
string
features
object
allowDemoDataUpload
boolean
id
integer
idpOrgId

Generic IDP organization ID

string
idpProvider

IDP provider name (auth0, keycloak, etc)

string
name
string
updatedAt
string
Example generated
[
{
"auth0Id": "example",
"createdAt": "example",
"description": "example",
"displayName": "example",
"features": {
"allowDemoDataUpload": true
},
"id": 1,
"idpOrgId": "example",
"idpProvider": "example",
"name": "example",
"updatedAt": "example"
}
]

Internal server error

Media type application/json
object
key
additional properties
string
Example generated
{
"additionalProperty": "example"
}