Routes
Update the status of a cancellation without Scrive integration
POSThttps://api.insurely.com/cancellations/{documentId}/status
Update the status of the cancellation, to indicate whether the cancellation is PENDING, CLOSED, REJECTED or CANCELLED
Request
Path Parameters
documentIdstring
Request Body
statusstring
Possible Enum values are
PENDING, CLOSED, REJECTED or CANCELED.Responses
Cancellation status successfully updated.
Body
cURL
curl https://api.insurely.com/cancellations/{documentId}/status \ -H "Content-Type: application/json" \ -d '{ "status": "PENDING"}' \ -X POST