POST api/Insured/InsuredCSRS

Insured CSRS list endpoint.

Request Information

URI Parameters

None.

Body Parameters

List of insured database Ids.

InsuredDataBaseIds
NameDescriptionTypeAdditional information
InsuredDataBaseId

Collection of globally unique identifier

None.

Request Formats

application/json, text/json

Sample:
{
  "insuredDataBaseId": [
    "92a9e99b-4481-431b-8bd3-387f10ebf40f",
    "192747de-ada0-4889-90b6-64c0b7537a76"
  ]
}

application/xml, text/xml

Sample:
<InsuredDataBaseIds xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.OData">
  <InsuredDataBaseId xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:guid>92a9e99b-4481-431b-8bd3-387f10ebf40f</d2p1:guid>
    <d2p1:guid>192747de-ada0-4889-90b6-64c0b7537a76</d2p1:guid>
  </InsuredDataBaseId>
</InsuredDataBaseIds>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

List of XRefInsuredAgents against given insured database Ids.

XRefInsuredAgents
NameDescriptionTypeAdditional information
DatabaseId

globally unique identifier

None.

FirstName

string

None.

LastName

string

None.

Order

integer

None.

InsuredDatabaseId

globally unique identifier

None.

Response Formats

application/json, text/json

Sample:
{
  "databaseId": "4699e1e9-631e-4603-9737-b5f61a572565",
  "firstName": "sample string 2",
  "lastName": "sample string 3",
  "order": 4,
  "insuredDatabaseId": "757fdd1f-a1a6-4722-848a-d6b13c55badc"
}

application/xml, text/xml

Sample:
<XRefInsuredAgents xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum">
  <DatabaseId>4699e1e9-631e-4603-9737-b5f61a572565</DatabaseId>
  <FirstName>sample string 2</FirstName>
  <InsuredDatabaseId>757fdd1f-a1a6-4722-848a-d6b13c55badc</InsuredDatabaseId>
  <LastName>sample string 3</LastName>
  <Order>4</Order>
</XRefInsuredAgents>