Retrieves a list of organizations for baseUrl and apiKey
POSThttps://api.spectrocloud.com/v1/clouds/coxedge/organizations
Retrieves a list of organizations for baseUrl and apiKey
Request
- application/json
Body
required
Request payload to get CoxEdge organizations
apiBaseUrlstring
CoxEdge baseUrl - for api calls
apiKeystring
CoxEdge ApiKey - secret for api calls
Responses
- 200
List of CoxEdge organizations
- application/json
- Schema
- Example (from schema)
Schema
organizations
object[]
required
{
"organizations": [
{
"id": "string",
"isDeleted": true,
"name": "string"
}
]
}
- curl
- python
- go
- nodejs
- java
- CURL
curl -L -X POST 'https://api.spectrocloud.com/v1/clouds/coxedge/organizations' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"apiBaseUrl": "string",
"apiKey": "string"
}'