### API Interaction

#### Base URL  
`https://api.uat.laka.co/v3/claims/{id}`

#### Request Example
```bash
curl --request PATCH \
     --url https://api.uat.laka.co/v3/claims/id \
     --header 'accept: application/json' \
     --header 'content-type: application/json' \
     --data '{"personId":null}'
```

### Schema

- **id**: `string` (required)
- **personId**: `uuid` (required) - Unique identifier (UUID v4 format). Defaults to null.
- **userId**: `uuid` - Unique identifier (UUID v4 format).
- **address**: `object`  
  - **address.country**: required. Accepts an ISO 3166-1 alpha-2 code (e.g. 'UK') or full country name (e.g. 'United Kingdom').
- **incidentDate**: `string` - An ISO-formatted date value.
- **policyId**: `uuid` - Policy identifier (UUID format).
- **claimType**: `string` (enum: theft, damage, health, liability) - Allowed values: `theft`, `damage`, `health`, `liability`.
- **incidentDetails**: `array of strings` - Details about the incident.
- **crimeReferenceNumber**: `string` - Crime reference number.
- **createClaimDeeplink**: `boolean` (true/false).
- **person**: `object`.
- **private**: `boolean` (true/false).
- **productIds**: `array of strings` (required) - A list of productIds on the claim.
- **x-api-region**: `string` - The API region of your interaction. In most cases, this will match the customer region.
- **x-api-language**: `string` - Where applicable, the language for any textual content we may send to the customer.

### Response
- `200`: The updated record.  
- Updated about 1 month ago.
