Skip to content
English
  • There are no suggestions because the search field is empty.

List all organizations

GET /api/v1/organizations Select code sample Fetch cURL
const url = 'https://localhost:10001/api/v1/organizations';const options = {method: 'GET', headers: {Authorization: '
  
   '}}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}
  
curl --request GET \  --url https://localhost:10001/api/v1/organizations \  --header 'Authorization: 
  
   '
  

Retrieve a list of all organizations

Authorizations

Section titled “Authorizations ”

Responses

Section titled “ Responses ”

200

Section titled “200 ”

Organizations

Media type application/json Array object auth0Id

Deprecated: use IDPOrgID

string createdAt string description string displayName string id integer idpOrgId

Generic IDP organization ID

string idpProvider

IDP provider name (auth0, keycloak, etc)

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

401

Section titled “401 ”

Unauthorized - Authentication required

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

500

Section titled “500 ”

Internal server error

Media type application/json object key additional properties string
Example generated
{  "additionalProperty": "example"}
Previous
Get attachment public URL
Next
Create organization