Skip to content

Retrieve all organizations

GET
/api/v2/organizations
curl --request GET \
--url https://dashboard.quantcdn.io/api/v2/organizations \
--header 'Authorization: Bearer <token>'

The request has succeeded.

Media typeapplication/json
Array<object>
object
name

Organization name

string
machine_name

Organization machine name

string
Example
[
{
"name": "Test Organization",
"machine_name": "test-org"
}
]

The server could not understand the request due to invalid syntax.

Media typeapplication/json
object
message
required

Error message

string
error
required

Error flag

boolean
Example
{
"message": "The requested resource was not found",
"error": true
}

Access is forbidden.

Media typeapplication/json
object
message
required

Error message

string
error
required

Error flag

boolean
Example
{
"message": "The requested resource was not found",
"error": true
}