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
id stringrequired
Organization ID
name string
Name of the organization
active boolean
If set to false, the organization is deactivated
{
"data": [
{
"id": "string",
"name": "string",
"active": true
}
]
}
Unexpected error
- application/json
- Schema
- Example (from schema)
Schema
message string
{
"message": "string"
}
Loading...