Sample payload addendum

This section contains sample payloads referenced in previous topics that are too long to include within those topics.

Sample policy payload

The following payload creates a sample Test Util policy.

{
  "data": {
    "attributes": {
      "effectiveDate": "2020-01-01T07:00:00.000Z",
      "expirationDate": "2031-01-01T07:00:00.000Z",
      "policyNumber": "FNOL-POLICY",
      "verifiedPolicy": true,
      "policyType": {
        "code": "PersonalAuto"
      },
      "status": {
        "code": "inforce"
      },
      "policyContacts": [
        {
          "contact": {
            "refid": "rayNewton"
          },
          "roles": [
            {
              "code": "insured"
            }
          ]
        }
      ],
      "policyLocations": [
        {
          "address": {
            "addressLine1": "287 Kensington Rd. #1A",
            "city": "South Pasadena",
            "postalCode": "91145",
            "state": {
              "code": "CA"
            }
          }
        }
      ],
      "policyCoverages": [
        {
          "coverageType": {
            "code": "PALiabilityCov"
          },
          "incidentLimit": {
            "amount": "30000.00",
            "currency": "usd"
          },
          "exposureLimit": {
            "amount": "15000.00",
            "currency": "usd"
          }
        }
      ],
      "vehicleRiskUnits": [
        {
          "RUNumber": 1,
          "vehicle": {
            "licensePlate": "1HGJ465",
            "make": "Toyota",
            "model": "Prius",
            "policySystemId": "pcveh:0001-1",
            "state": {
              "code": "CA"
            },
            "vin": "1GV234TV347463345",
            "year": 2007
          },
          "coverages": [
            {
              "coverageType": {
                "code": "PACollisionCov"
              },
              "covTerms": [
                {
                  "covTermPattern": {
                    "code": "PACollDeductible"
                  },
                  "covTermSubtype": "FinancialCovTerm",
                  "financialAmount": {
                    "amount": "500.00",
                    "currency": "usd"
                  }
                }
              ],
              "incidentLimit": {
                "amount": "15000.00",
                "currency": "usd"
              }
            }
          ]
        }
      ]
    }
  },
  "included": {
    "TestUtilContact": [
      {
        "attributes": {
          "firstName": "Ray",
          "lastName": "Newton",
          "primaryAddress": {
            "addressLine1": "287 Kensington Rd. #1A",
            "city": "South Pasadena",
            "country": "US",
            "postalCode": "91145",
            "state": {
              "code": "CA"
            }
          },
          "subtype": {
            "code": "Person"
          },
          "policySystemId": "ab:0001-1"
        },
        "method": "post",
        "refid": "rayNewton",
        "uri": "/test-util/v1/contacts"
      }
    ]
  }
}

Sample draft claim payload

The following payload creates a sample draft claim using an existing policy.

{
  "data": {
      "attributes": {
        "lossDate": "2020-03-01T07:00:00.000Z",
        "policyNumber": "FNOL-POLICY",
        "lossCause": {
          "code": "vehcollision" 
        },
        "mainContact": {
          "policySystemId": "ab:0001-1"
        },
        "reporter": {
            "policySystemId": "ab:0001-1"
        }
      }
  },
  "included": {
    "ClaimContact": [
      {
        "attributes": {
          "firstName": "Robert",
          "lastName": "Farley",
          "contactSubtype": "Person"
        },
        "method": "post",
        "refid": "robertFarley",
        "uri": "/claim/v1/claims/this/contacts"
      }
    ],
    "VehicleIncident": [
      {
        "attributes": {
          "collision": true,
          "damageDescription": "Minor collision",
          "driver": {
            "policySystemId": "ab:0001-1"
          },
          "lossParty": {
            "code": "insured"
          },
          "vehicle": {
            "policySystemId": "pcveh:0001-1"
          }
        },
      "method": "post",
      "uri": "/claim/v1/claims/this/vehicle-incidents"
      },
      {
        "attributes": {
          "collision": true,
          "damageDescription": "Minor collision",
          "driver": {
            "refid": "robertFarley"
          },
          "lossParty": {
            "code": "third_party"
          },
          "vehicle": {
            "licensePlate": "2PIX534",
            "make": "Honda",
            "model": "Civic",
            "state": {
              "code": "CA"
            },
            "vin": "3DT6YUQ3K9003LP19",
            "year": 2019
          }
        },
      "method": "post",
      "uri": "/claim/v1/claims/this/vehicle-incidents"
      }
    ]
  }
}

Sample composite claim payload

The following payload creates a sample claim in a composite request. This includes creating an unverified policy, creating a draft claim for that policy, and then submitting the claim. (For information on how to create the claim's child objects, such as ClaimContacts and incidents, refer to the other topics in the ClaimCenter Business Flows section.)

{
  "requests": [
    {
      "body": {
        "data": {
          "attributes": {
            "policyNumber": "composite-FNOL-example",
            "policyType": {
              "code": "PersonalAuto"
            }
          }
        }
      },
      "method": "post",
      "uri": "/claim/v1/unverified-policies",
      "vars": [
        {
          "name": "policyId",
          "path": "$.data.attributes.id"
        }
      ]
    },
    {
      "body": {
        "data": {
          "attributes": {
            "coverageType": {
              "code": "PALiabilityCov"
            },
            "covTerms": [
              {
                "covTermSubtype": "FinancialCovTerm",
                "covTermOrder": 1,
                "covTermPattern": {
                  "code": "PALiability"
                },
                "modelAggregation": {
                  "code": "pi"
                },
                "modelRestriction": {
                  "code": "acc"
                },
                "financialAmount": {
                  "amount": "50000.00",
                  "currency": "usd"
                }
              },
              {
                "covTermSubtype": "ClassificationCovTerm",
                "covTermOrder": 2,
                "code": "Classification Code - 1",
                "description": "ClassificationCovTerm description"
              }
            ],
            "currency": {
              "code": "usd"
            },
            "exposureLimit": {
              "amount": "15000.00",
              "currency": "usd"
            },
            "incidentLimit": {
              "amount": "10000.00",
              "currency": "usd"
            },
            "notes": "Coverage of unverified policy",
            "state": {
              "code": "CA"
            }
          }
        }
      },
      "method": "post",
      "uri": "/claim/v1/unverified-policies/${policyId}/coverages"
    },
    {
      "body": {
        "data": {
          "attributes": {
            "addressBookUID": "UID-RayNewton-001",
            "emailAddress1": "RayNewton@email.com",
            "firstName": "Ray",
            "lastName": "Newton",
            "primaryAddress": {
              "addressLine1": "287 Kensington Rd. #1A",
              "city": "South Pasadena",
              "country": "US",
              "postalCode": "91145",
              "state": {
                "code": "CA"
              }
            },
            "primaryPhoneType": {
              "code": "work"
            },
            "contactSubtype": "Person",
            "workPhone": {
              "countryCode": {
                "code": "US"
              },
              "number": "818-446-1206"
            }
          }
        }
      },
      "method": "post",
      "uri": "/claim/v1/unverified-policies/${policyId}/contacts",
      "vars": [
        {
          "name": "insuredId",
          "path": "$.data.attributes.id"
        }
      ]
    },
    {
      "body": {
        "data": {
          "attributes": {
            "insured": {
              "id": "${insuredId}"
            }
          }
        }
      },
      "method": "patch",
      "uri": "/claim/v1/unverified-policies/${policyId}"
    },
    {
      "body": {
        "data": {
          "attributes": {
            "addressBookUID": "UID-HelenNewton-001",
            "emailAddress1": "HelenNewton@email.com",
            "firstName": "Helen",
            "lastName": "Newton",
            "primaryAddress": {
              "addressLine1": "287 Kensington Rd. #1A",
              "city": "South Pasadena",
              "country": "US",
              "postalCode": "91145",
              "state": {
                "code": "CA"
              }
            },
            "primaryPhoneType": {
              "code": "work"
            },
            "contactSubtype": "Person",
            "workPhone": {
              "countryCode": {
                "code": "US"
              },
              "number": "818-446-1206"
            }
          }
        }
      },
      "method": "post",
      "uri": "/claim/v1/unverified-policies/${policyId}/contacts",
      "vars": [
        {
          "name": "coveredContactId",
          "path": "$.data.attributes.id"
        }
      ]
    },
    {
      "body": {
        "data": {
          "attributes": {
            "coveredParties": [
              {
                "id": "${coveredContactId}"
              }
            ]
          }
        }
      },
      "method": "patch",
      "uri": "/claim/v1/unverified-policies/${policyId}"
    },
    {
      "body": {
        "data": {
          "attributes": {
            "description": "Vehicle Risk Unit Description",
            "vehicle": {
              "color": "Green",
              "licensePlate": "1ABC234",
              "make": "Honda",
              "manufacturer": {
                "code": "HOND"
              },
              "model": "Accord",
              "state": {
                "code": "CA"
              },
              "style": {
                "code": "passengercar"
              },
              "vin": "QWE327UH534NMK09P",
              "year": 2010
            }
          }
        }
      },
      "method": "post",
      "uri": "/claim/v1/unverified-policies/${policyId}/vehicle-risk-units",
      "vars": [
        {
          "name": "vehicleId",
          "path": "$.data.attributes.vehicle.id"
        },
        {
          "name": "vehicleRUId",
          "path": "$.data.attributes.id"
        },
        {
          "name": "RUNumber",
          "path": "$.data.attributes.RUNumber"
        }
      ]
    },
    {
      "body": {
        "data": {
          "attributes": {
            "claimAggLimit": {
              "amount": "7000.00",
              "currency": "usd"
            },
            "personAggLimit": {
              "amount": "8000.00",
              "currency": "usd"
            },
            "coverageType": {
              "code": "PACollisionCov"
            },
            "covTerms": [
              {
                "covTermSubtype": "FinancialCovTerm",
                "covTermOrder": 1,
                "covTermPattern": {
                  "code": "PACollDeductible"
                },
                "modelAggregation": {
                  "code": "pi"
                },
                "modelRestriction": {
                  "code": "acc"
                },
                "financialAmount": {
                  "amount": "500.00",
                  "currency": "usd"
                }
              },
              {
                "covTermSubtype": "NumericCovTerm",
                "covTermOrder": 2,
                "numericValue": "20.20",
                "units": {
                  "code": "days"
                }
              }
            ],
            "currency": {
              "code": "usd"
            },
            "exposureLimit": {
              "amount": "10000.00",
              "currency": "usd"
            },
            "incidentLimit": {
              "amount": "20000.00",
              "currency": "usd"
            },
            "notes": "Coverage of vehicle risk unit"
          }
        }
      },
      "method": "post",
      "uri": "/claim/v1/unverified-policies/${policyId}/vehicle-risk-units/${vehicleRUId}/coverages"
    },
    {
      "body": {
        "data": {
          "attributes": {
            "lossDate": "2021-02-01T07:00:00.000Z",
            "lossLocation": {
              "addressLine1": "100 Main St.",
              "city": "San Mateo",
              "postalCode": "90123",
              "state": {
                "code": "CA"
              }
            },
            "policyNumber": "composite-FNOL-example",
            "reporter": {
              "id": "${insuredId}"
            }
          }
        }
      },
      "method": "post",
      "uri": "/claim/v1/claims",
      "vars": [
        {
          "name": "claimId",
          "path": "$.data.attributes.id"
        }
      ]
    },
    {
      "body": {
        "data": {
          "attributes": {
            "body": "Test note body"
          }
        }
      },
      "method": "post",
      "uri": "/claim/v1/claims/${claimId}/notes"
    },
    {
      "body": {
        "data": {
          "attributes": {
            "collision": true,
            "collisionPoint": {
              "code": "03"
            },
            "damageDescription": "Damaged front bumper",
            "driver": {
              "id": "${insuredId}"
            },
            "lossParty": {
              "code": "insured"
            },
            "severity": {
              "code": "major-auto"
            },
            "vehicle": {
              "id": "${vehicleId}"
            }
          }
        }
      },
      "method": "post",
      "uri": "/claim/v1/claims/${claimId}/vehicle-incidents",
      "vars": [
        {
          "name": "vehicleIncidentId",
          "path": "$.data.attributes.id"
        },
        {
          "name": "driverUri",
          "path": "$.data.attributes.driver.uri"
        }
      ]
    },
    {
      "body": {
        "data": {
          "attributes": {
            "coverageSubtype": {
              "code": "PACollisionCov"
            },
            "claimant": {
              "id": "${insuredId}"
            },
            "primaryCoverage": {
              "code": "PACollisionCov"
            },
            "vehicleIncident": {
              "id": "${vehicleIncidentId}"
            }
          }
        }
      },
      "method": "post",
      "uri": "/claim/v1/claims/${claimId}/exposures",
      "vars": [
        {
          "name": "exposureId",
          "path": "$.data.attributes.id"
        }
      ]
    },
    {
      "body": {
        "data": {
          "attributes": {
            "cellPhone": {
              "countryCode": {
                "code": "US"
              },
              "number": "555-555-5555"
            },
            "dateOfBirth": "1928-11-18",
            "emailAddress1": "MitchMochizuki@email.com",
            "firstName": "Mitch",
            "homePhone": {
              "countryCode": {
                "code": "US"
              },
              "number": "555-555-5556"
            },
            "lastName": "Mochizuki",
            "licenseNumber": "ABCDE12345",
            "licenseState": {
              "code": "CA"
            },
            "primaryAddress": {
              "addressLine1": "1313 Albian Dr.",
              "city": "Anaheim",
              "country": "US",
              "county": "Orange County",
              "postalCode": "92802",
              "state": {
                "code": "CA"
              }
            },
            "primaryLanguage": {
              "code": "en_US"
            },
            "primaryLocale": {
              "code": "en_US"
            },
            "primaryPhoneType": {
              "code": "home"
            },
            "contactSubtype": "Person"
          }
        }
      },
      "method": "post",
      "uri": "/claim/v1/claims/${claimId}/contacts",
      "vars": [
        {
          "name": "mitchMochizukiId",
          "path": "$.data.attributes.id"
        }
      ]
    },
    {
      "body": {
        "data": {
          "attributes": {
            "addressBookUID": "DOCTOR-12345",
            "dateOfBirth": "1959-06-11",
            "emailAddress1": "DanaEdwards@email.com",
            "firstName": "Dana",
            "lastName": "Edwards",
            "primaryAddress": {
              "addressLine1": "1000 Hospital Dr.",
              "city": "Princeton",
              "country": "US",
              "postalCode": "08540",
              "state": {
                "code": "NJ"
              }
            },
            "primaryLanguage": {
              "code": "en_US"
            },
            "primaryLocale": {
              "code": "en_US"
            },
            "primaryPhoneType": {
              "code": "work"
            },
            "contactSubtype": "Doctor",
            "workPhone": {
              "countryCode": {
                "code": "US"
              },
              "number": "666-666-6666"
            }
          }
        }
      },
      "method": "post",
      "uri": "/claim/v1/claims/${claimId}/contacts",
      "vars": [
        {
          "name": "danaEdwardsId",
          "path": "$.data.attributes.id"
        }
      ]
    },
    {
      "body": {
        "data": {
          "attributes": {
            "ambulanceUsed": true,
            "bodyParts": [
              {
                "detailedBodyPart": {
                  "code": "57"
                },
                "detailedBodyPartDesc": {
                  "code": "57B"
                },
                "impairmentPercentage": 77,
                "ordering": 12,
                "primaryBodyPart": {
                  "code": "lower"
                },
                "sideOfBody": {
                  "code": "left"
                }
              }
            ],
            "description": "Head trauma, possible concussion",
            "detailedInjuryType": {
              "code": "07"
            },
            "disabledDueToAccident": {
              "code": "notdisabled"
            },
            "generalInjuryType": {
              "code": "specific"
            },
            "injuredPerson": {
              "id": "${mitchMochizukiId}"
            },
            "lossParty": {
              "code": "third_party"
            },
            "lostWages": false,
            "primaryDoctor": {
              "id": "${danaEdwardsId}"
            },
            "severity": {
              "code": "major-injury"
            },
            "treatmentType": {
              "code": "er"
            }
          }
        }
      },
      "method": "post",
      "uri": "/claim/v1/claims/${claimId}/injury-incidents"
    },
    {
      "body": {
        "data": {
          "attributes": {
            "collision": true,
            "collisionPoint": {
              "code": "03"
            },
            "damageDescription": "Damaged rear bumper",
            "driver": {
              "id": "${mitchMochizukiId}"
            },
            "lossParty": {
              "code": "third_party"
            },
            "severity": {
              "code": "major-auto"
            },
            "vehicle": {
              "color": "silver",
              "licensePlate": "MERLIN0",
              "make": "Subaru",
              "model": "Outback",
              "year": 2005
            }
          }
        }
      },
      "method": "post",
      "uri": "/claim/v1/claims/${claimId}/vehicle-incidents"
    },
    {
      "body": {
        "data": {
          "attributes": {
            "addressBookUID": "REPAIRSHOP-12345",
            "companyName": "#(args.name)",
            "editableRoles": [
              {
                "active": true,
                "relatedTo": {
                  "id": "${claimId}",
                  "type": "Claim"
                },
                "role": {
                  "code": "repairshop"
                }
              }
            ],
            "contactSubtype": "AutoRepairShop"
          }
        }
      },
      "method": "post",
      "uri": "/claim/v1/claims/${claimId}/contacts"
	},
    {
      "method": "post",
      "uri": "/claim/v1/claims/${claimId}/submit"
    }
  ],
  "selections": [
    {
      "uri": "${driverUri}"
    }
  ]
}