Retrieve policies for the authenticated organization

GET /api/v1/policy

Returns a list of policies associated with the authenticated user's organization. The user must be authenticated.

Responses

  • 200 application/json

    A list of policies associated with the organization was successfully retrieved

    Hide response attributes Show response attributes object
  • Not authenticated. The user must be logged in to access this endpoint.

GET /api/v1/policy
curl \
 --request GET https://ark.collegecanine.com/api/v1/policy
Response examples (200)
[
  {
    "internalID": "string",
    "number": 42,
    "cvc": "string",
    "ownerFirstname": "string",
    "ownerLastname": "string",
    "ownerDOB": "2025-05-04",
    "petName": "string",
    "petDOB": "2025-05-04",
    "effectiveDate": "2025-05-04",
    "expirationDate": "2025-05-04",
    "coverage": {},
    "charges": []
  }
]