List all organizations
GET/v1/providers/:provider_id/orgs
List all organizations
Request
Path Parameters
provider_id stringrequired
Provider ID
Query Parameters
include_inactive boolean
If set to true, includes inactive organizations in the response
Responses
- 200
- default
OK
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
data
object[]
required
idstringrequired
Organization ID
namestring
Name of the organization
activeboolean
If set to false, the organization is deactivated
{
"data": [
{
"id": "string",
"name": "string",
"active": true
}
]
}
Unexpected error
- application/json
- Schema
- Example (from schema)
Schema
messagestring
{
"message": "string"
}