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
    • internalID string

      Internal ID of the policy

    • number integer

      Unique policy number identifier

    • cvc string

      CVC of the policy

    • ownerFirstname string

      First name of the policy owner

    • ownerLastname string

      Last name of the policy owner

    • ownerDOB string(date)

      Date of birth of the policy owner

    • petName string

      Name of the pet covered by the policy

    • petDOB string(date)

      Date of birth of the pet covered by the policy

    • effectiveDate string(date)

      Policy's effective start date

    • expirationDate string(date)

      Policy's expiration date

    • coverage object

      Coverage details associated with the policy

      Additional properties are allowed.

    • charges array

      Charges associated with the policy

  • 401

    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": []
  }
]