POST api/PendingCancellation/Insert
Insert/Update Pending Cancellations.
Request Information
URI Parameters
None.
Body Parameters
PendingCancellationRecordName | 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": "0383f5a9-fff4-4d68-825b-d454e0359515", "to": "2024-12-12T22:24:02.4914345-06:00", "changeDate": "2024-12-12T22:24:02.4914345-06:00", "createDate": "2024-12-12T22:24:02.4914345-06:00", "sendReminders": true, "sendRemindersPriorDays": 6, "description": "sample string 7", "policyDatabaseId": "7df7d502-edff-4164-af37-76f54f2afe01", "policyNumber": "sample string 9", "insuredEmail": "sample string 10", "insuredFirstName": "sample string 11", "insuredLastName": "sample string 12", "insuredCommercialName": "sample string 13", "insuredDatabaseId": "168a1f85-351a-453d-88f5-cbd1658c0c1c" }
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>2024-12-12T22:24:02.4914345-06:00</ChangeDate> <CreateDate>2024-12-12T22:24:02.4914345-06:00</CreateDate> <DatabaseId>0383f5a9-fff4-4d68-825b-d454e0359515</DatabaseId> <Description>sample string 7</Description> <InsuredCommercialName>sample string 13</InsuredCommercialName> <InsuredDatabaseId>168a1f85-351a-453d-88f5-cbd1658c0c1c</InsuredDatabaseId> <InsuredEmail>sample string 10</InsuredEmail> <InsuredFirstName>sample string 11</InsuredFirstName> <InsuredLastName>sample string 12</InsuredLastName> <PolicyDatabaseId>7df7d502-edff-4164-af37-76f54f2afe01</PolicyDatabaseId> <PolicyNumber>sample string 9</PolicyNumber> <SendReminders>true</SendReminders> <SendRemindersPriorDays>6</SendRemindersPriorDays> <To>2024-12-12T22:24:02.4914345-06:00</To> </PendingCancellationRecord>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
NowCertsApiResultWithInsuredAndPolicyIdName | 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": "706dcbaf-86b4-4f97-8171-e02019900991", "insuredDatabaseId": "6933aa37-43ee-4d1a-83d5-b3fbb928a3f4", "databaseId": "aff32fe9-a130-4ab9-a3df-fab0cf980209", "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>aff32fe9-a130-4ab9-a3df-fab0cf980209</DatabaseId> <InsuredDatabaseId>6933aa37-43ee-4d1a-83d5-b3fbb928a3f4</InsuredDatabaseId> <PolicyOrQuoteId>706dcbaf-86b4-4f97-8171-e02019900991</PolicyOrQuoteId> </NowCertsApiResultWithInsuredAndPolicyId>