Querying for policies

Use the following endpoints to query for policies:

  • GET /policy/v1/policies
  • GET /policy/v1/policies/{policyId}

For example, the following is a portion of the payload that is returned when retrieving policy pc:909.

GET /policy/v1/policies/pc:909

{
    "data": {
        "attributes": {
            "account": {
                "displayName": "C000143542",
                "id": "pc:Sl9Ku7grY4qRy28Y4GkRI",
            },
            "id": "pc:909",
            "organization": {
                "displayName": "Armstrong and Company",
                "id": "pc:1",
            },
            "periodEnd": "2022-07-20T00:01:00.000Z",
            "periodStart": "2022-01-20T00:01:00.000Z",
            "policyNumber": "P000143542",
            "primaryInsured": {
                "displayName": "Ray Newton",
            },
            "primaryLocation": {
                "displayName": "1: 1253 Paloma Ave, Arcadia, CA",
            },
            "producerCode": {
                "displayName": "100-002541",
                "id": "pc:6"
            },
            "product": {
                "displayName": "Personal Auto",
                "id": "PersonalAuto"
            },
            "termType": {
                "code": "HalfYear",
                "name": "6 months"
            },
            "totalCost": {
                "amount": "764.00",
                "currency": "usd"
            }
        }
...