Living expenses incidents

A living expenses incident is an object that captures loss information about expenses incurred as a result of the loss of use of a property. (For example, staying in a hotel while a damaged home is repaired.)

Endpoints for managing living expense incidents

Use the following endpoints to manage living expense incidents:

  • GET /claims/{claimId}/living-expense-incidents
  • POST /claims/{claimId}/living-expense-incidents
  • GET /claims/{claimId}/living-expense-incidents/{incidentId}
  • PATCH /claims/{claimId}/living-expense-incidents/{incidentId}
  • DELETE /claims/{claimId}/living-expense-incidents/{incidentId}

For example, the following request creates a living expense incident for cc:5433.

POST /claim/v1/claims/cc:5433/living-expenses-incidents
        
{
    "data": {
        "attributes": {
            "description": "7-day hotel stay during flood damage repair",
		"lossParty" : {
		  "code" : "insured"
		},
		"startDate" : "2020-08-31T07:00:00.000Z"
        }
    }
}