Retrieve a list of child charges for the authenticated organization

GET /api/v1/test

Returns a list of charges associated with the authenticated organization where isCheck is set to true. The user must be authenticated as an organization to access this data.

Responses

  • 200 application/json

    A list of child charges was successfully retrieved

    Hide response attributes Show response attributes object
    • id string

      Unique identifier of the charge

    • Identifier of the organization the charge belongs to

    • isCheck boolean

      Indicates if the charge is marked with isCheck

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

GET /api/v1/test
curl \
 -X GET https://ark.collegecanine.com/api/v1/test
Response examples (200)
[
  {
    "id": "string",
    "organizationId": "string",
    "isCheck": true
  }
]