This event is fired when a policy pre-cancellation has been voided. It indicates that a previously initiated pre-cancellation process was cancelled or invalidated, and the policy remains active.
When and what fires this event?
If this event is defined on a product, and it has actions that are enabled:
Copilot: fires when a pre-cancellation is invalidated;
API: can fire this event externally on demand.
Request payload
POST:https://api.{ENV}.dais.com/ioi/v3/event/fire
curl --location --request POST 'https://api.{ENV}.dais.com/ioi/v3/event/fire' \
--header 'Authorization: Basic <yourAuthHere>' \
--header 'Content-Type: application/json' \
--data-raw '{
"lineId": "<UUID of the product>",
"type": "PRE_CANCELLATION_VOIDED",
"payload": {
"policyId": "<UUID of the policy>",
"clientId": "<UUID of the client>",
"documents": [],
"event": {
"eventId": "<UUID>",
"type": "PRE_CANCELLATION_VOIDED",
"label": "<string>",
"description": "<string>"
},
"policy": {
"id": "<UUID>",
"policyNumber": "<string>"
}
}
}'
Request fields
Property
Required
Description
lineId
true
UUID for the product the policy belongs to
type
true
Must be set to PRE_CANCELLATION_VOIDED
payload
true
Explained below
Payload fields
Property
Required
Description
policyId
true
UUID of the policy affected by the voided pre-cancellation.