Retrieve child organizations for the authenticated organization

GET /api/v1/organization

Returns a list of child organizations under the authenticated user's organization. The user must be authenticated.

Responses

  • 200 application/json

    A list of child organizations was successfully retrieved

    Hide response attributes Show response attributes object
    • id string

      Unique identifier of the organization

    • name string

      Name of the organization

    • parentId string

      Identifier of the parent organization

  • Not authenticated. The user must be logged in to access this endpoint.

GET /api/v1/organization
curl \
 --request GET https://ark.collegecanine.com/api/v1/organization
Response examples (200)
[
  {
    "id": "string",
    "name": "string",
    "parentId": "string"
  }
]