POST api/Insured/PendingCancellations
Insured Pending Cancellations list endpoint.
Request Information
URI Parameters
None.
Body Parameters
List of insured database Ids.
InsuredDataBaseIds| Name | Description | Type | Additional information |
|---|---|---|---|
| InsuredDataBaseId | Collection of globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"insuredDataBaseId": [
"6c0c4f0b-24bf-4ab8-8508-33a45ab88ff8",
"637d580a-659e-42d9-b591-d35f5dc64dda"
]
}
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>6c0c4f0b-24bf-4ab8-8508-33a45ab88ff8</d2p1:guid>
<d2p1:guid>637d580a-659e-42d9-b591-d35f5dc64dda</d2p1:guid>
</InsuredDataBaseId>
</InsuredDataBaseIds>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
List of PendingCancellations list against given insured database Ids.
PendingCancellations| Name | Description | Type | Additional information |
|---|---|---|---|
| DatabaseId | globally unique identifier |
None. |
|
| To | date |
None. |
|
| ChangeDate | date |
None. |
|
| CreateDate | date |
None. |
|
| SendReminders | string |
None. |
|
| SendRemindersPriorDays | integer |
None. |
|
| Description | string |
None. |
|
| Active | string |
None. |
|
| InsuredDatabaseId | globally unique identifier |
None. |
|
| InsuredEmail | string |
None. |
|
| InsuredFirstName | string |
None. |
|
| InsuredLastName | string |
None. |
|
| InsuredCommercialName | string |
None. |
|
| PolicyDatabaseId | globally unique identifier |
None. |
|
| PolicyNumber | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"databaseId": "ed646b9a-1c81-4abe-9b32-63ca93a45146",
"to": "2026-06-06T15:47:33.4358413-05:00",
"changeDate": "2026-06-06T15:47:33.4358413-05:00",
"createDate": "2026-06-06T15:47:33.4358413-05:00",
"sendReminders": "sample string 5",
"sendRemindersPriorDays": 6,
"description": "sample string 7",
"active": "sample string 8",
"insuredDatabaseId": "9df5a754-81cc-4520-84d5-f5eafc6fd84e",
"insuredEmail": "sample string 10",
"insuredFirstName": "sample string 11",
"insuredLastName": "sample string 12",
"insuredCommercialName": "sample string 13",
"policyDatabaseId": "e49236a8-1fa4-46a1-a4c8-f1c127f00e6e",
"policyNumber": "sample string 14"
}
application/xml, text/xml
Sample:
<PendingCancellations xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum"> <Active>sample string 8</Active> <ChangeDate>2026-06-06T15:47:33.4358413-05:00</ChangeDate> <CreateDate>2026-06-06T15:47:33.4358413-05:00</CreateDate> <DatabaseId>ed646b9a-1c81-4abe-9b32-63ca93a45146</DatabaseId> <Description>sample string 7</Description> <InsuredCommercialName>sample string 13</InsuredCommercialName> <InsuredDatabaseId>9df5a754-81cc-4520-84d5-f5eafc6fd84e</InsuredDatabaseId> <InsuredEmail>sample string 10</InsuredEmail> <InsuredFirstName>sample string 11</InsuredFirstName> <InsuredLastName>sample string 12</InsuredLastName> <PolicyDatabaseId>e49236a8-1fa4-46a1-a4c8-f1c127f00e6e</PolicyDatabaseId> <PolicyNumber>sample string 14</PolicyNumber> <SendReminders>sample string 5</SendReminders> <SendRemindersPriorDays>6</SendRemindersPriorDays> <To>2026-06-06T15:47:33.4358413-05:00</To> </PendingCancellations>