POST api/PendingCancellation/Insert
Insert/Update Pending Cancellations.
Request Information
URI Parameters
None.
Body Parameters
PendingCancellationRecord| Name | Description | Type | Additional information |
|---|---|---|---|
| DatabaseId | globally unique identifier |
None. |
|
| To | date |
Required |
|
| ChangeDate | date |
None. |
|
| CreateDate | date |
None. |
|
| SendReminders | boolean |
Required |
|
| SendRemindersPriorDays | integer |
Required |
|
| Description | string |
None. |
|
| PolicyDatabaseId | globally unique identifier |
Required |
|
| PolicyNumber | string |
None. |
|
| InsuredEmail | string |
None. |
|
| InsuredFirstName | string |
None. |
|
| InsuredLastName | string |
None. |
|
| InsuredCommercialName | string |
None. |
|
| InsuredDatabaseId | globally unique identifier |
None. |
Request Formats
application/json, text/json
Sample:
{
"databaseId": "fc4980a3-0ca9-4c16-a0f5-3e674f2e0d4d",
"to": "2026-04-01T05:16:54.479668-05:00",
"changeDate": "2026-04-01T05:16:54.479668-05:00",
"createDate": "2026-04-01T05:16:54.479668-05:00",
"sendReminders": true,
"sendRemindersPriorDays": 6,
"description": "sample string 7",
"policyDatabaseId": "8a8117de-9b27-47e8-b458-688ad503d466",
"policyNumber": "sample string 9",
"insuredEmail": "sample string 10",
"insuredFirstName": "sample string 11",
"insuredLastName": "sample string 12",
"insuredCommercialName": "sample string 13",
"insuredDatabaseId": "dee83ed6-f564-4979-92a8-f75474b489e8"
}
application/xml, text/xml
Sample:
<PendingCancellationRecord xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum"> <ChangeDate>2026-04-01T05:16:54.479668-05:00</ChangeDate> <CreateDate>2026-04-01T05:16:54.479668-05:00</CreateDate> <DatabaseId>fc4980a3-0ca9-4c16-a0f5-3e674f2e0d4d</DatabaseId> <Description>sample string 7</Description> <InsuredCommercialName>sample string 13</InsuredCommercialName> <InsuredDatabaseId>dee83ed6-f564-4979-92a8-f75474b489e8</InsuredDatabaseId> <InsuredEmail>sample string 10</InsuredEmail> <InsuredFirstName>sample string 11</InsuredFirstName> <InsuredLastName>sample string 12</InsuredLastName> <PolicyDatabaseId>8a8117de-9b27-47e8-b458-688ad503d466</PolicyDatabaseId> <PolicyNumber>sample string 9</PolicyNumber> <SendReminders>true</SendReminders> <SendRemindersPriorDays>6</SendRemindersPriorDays> <To>2026-04-01T05:16:54.479668-05:00</To> </PendingCancellationRecord>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
NowCertsApiResultWithInsuredAndPolicyId| Name | Description | Type | Additional information |
|---|---|---|---|
| PolicyOrQuoteId | globally unique identifier |
None. |
|
| InsuredDatabaseId | globally unique identifier |
None. |
|
| DatabaseId | globally unique identifier |
None. |
|
| Status | ApiStatus |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"policyOrQuoteId": "32fd4822-5136-4757-8169-2f45f61305e0",
"insuredDatabaseId": "ee8de32b-9d29-4d70-9152-209d070dc741",
"databaseId": "0c0fa0de-3669-44ce-b888-bcbc9b724924",
"status": 0,
"message": "sample string 3"
}
application/xml, text/xml
Sample:
<NowCertsApiResultWithInsuredAndPolicyId xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.NowCertsFulcrum"> <Message>sample string 3</Message> <Status>Error</Status> <DatabaseId>0c0fa0de-3669-44ce-b888-bcbc9b724924</DatabaseId> <InsuredDatabaseId>ee8de32b-9d29-4d70-9152-209d070dc741</InsuredDatabaseId> <PolicyOrQuoteId>32fd4822-5136-4757-8169-2f45f61305e0</PolicyOrQuoteId> </NowCertsApiResultWithInsuredAndPolicyId>