Injury incidents
An injury incident is an object that captures loss information about a single injury that a claimant suffered.
An injury incident typically includes an inline damageable named
injuredPerson, with fields that describe inherent qualities of the
person, such as firstName and lastName. The injury
incident also contains additional information specific to the injury, such as
ambulenceused, primaryDoctor, and
treatmentType. You do not have to specify
injuredPerson when creating an injury incident. If you do want to
specify injuredPerson, you can either:
- Specify an existing ClaimContact on the policy by providing its
policySystemId. - Specify an existing ClaimContact on the claim by providing its ClaimCenter
id. - Create a new ClaimContact in the
includedsection and reference that ClaimContact byrefid.
Endpoints for managing injury incidents
Use the following endpoints to manage injury incidents:
- GET
/claims/{claimId}/injury-incidents - POST
/claims/{claimId}/injury-incidents - GET
/claims/{claimId}/injury-incidents/{incidentId} - PATCH
/claims/{claimId}/injury-incidents/{incidentId} - DELETE
/claims/{claimId}/injury-incidents/{incidentId}
For example, the following request creates an injury incident for claim cc:332. In
the request, the injury incident's injuredPerson is provided, and
it is specified using the ClaimCenter id.
POST /claim/v1/claims/cc:332/injury-incidents
{
"data": {
"attributes": {
"bodyParts": [
{
"primaryBodyPart": {
"code": "head"
}
}
],
"description": "Potential vision loss",
"detailedInjuryType": {
"code": "58"
},
"generalInjuryType": {
"code": "specific"
},
"injuredPerson": {
"id": "cc:102"
},
"lossParty": {
"code": "third_party"
},
"lostWages": true,
"severity": {
"code": "major-injury"
},
"treatmentType": {
"code": "hospital"
}
}
}
}