You are here:
InsClaimItemService:getPartyContacts
Use this service to get a list of all the contact information for all involved parties in a specified claim.
Method: getPartyContacts
How It Works
-
Takes the
claimIdand gets the claim record. -
Returns a list of all the contact info for all involved parties in this claim.
Remote Options
Option |
Description |
|---|---|
|
Required. The Id of the claim for which this service will get contact information for involved parties. |
Output JSON
The service returns a JSON formatted list of contact information for all the involved parties for the specified claim.
"partyContacts": [
{
"Address": {
"city": "San Francisco",
"country": USA,
"geocodeAccuracy": null,
"latitude": null,
"longitude": null,
"postalCode": "94103",
"state": "CA",
"street": "50 Fremont"
},
"Phone": "555 123 4567",
"Email": marysue@mailinator.com,
"Name": "Mary Sue Smith",
"RelationshipType": "Payee",
"Id": "a461U00000064BEQAY"
},
{
"Address": null,
"Phone": 555 765 1212,
"Email": john.doe@mailinator.com,
"Name": "John Doe",
"RelationshipType": "Witness",
"Id": "a461U00000065RWQAY"
},
{
"Address": {
"city": "Mountain View",
"country": USA,
"geocodeAccuracy": null,
"latitude": null,
"longitude": null,
"postalCode": 94043,
"state": "CA",
"street": 1000 Castro St
},
"Phone": "123 456 7890",
"Email": "joansmith42@mailinator.com",
"Name": "Joan Smith",
"RelationshipType": "Payee",
"Id": "a461U0000005xS0QAI"
}
],

