riverty logo

Docs

Get the Reference Contacts for a Claim

Path

GET /claims/{claimNumber}/referenceContacts

Request Parameters

X-Client-Reference
array
Client reference header
claimNumber
required
string
claim number of the requested claim

Responses

Successful Request

Request Example

    
        null
    

Response Example

    
        {
 "items": [
  {
   "firstName": "string",
   "lastName": "string",
   "type": "SPOUSE",
   "liable": false,
   "address": {
    "street": "string",
    "houseNumber": "string",
    "addressLine2": "string",
    "zipCode": "string",
    "city": "string",
    "countryCode": "st",
    "careOf": "string",
    "type": "BILLING"
   },
   "communicationChannels": [
    {
     "type": "PHONE",
     "value": "string"
    }
   ]
  }
 ],
 "pagination": {
  "totalItems": 0
 }
}