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