Appearance
Send Acknowledgment Reminders
Send reminder emails for up to 200 acknowledgment instances. Requires ADMIN or MANAGE_DOCUMENTS permissions, and the document acknowledgments feature must be enabled for the target.
Outstanding acknowledgments with an initial queued notification have that notification released immediately. Otherwise, a new reminder notification is queued. Completed, removed, missing, or already-processing acknowledgments are skipped.
Parameters
| name * are required parameters | data type | description |
|---|---|---|
body.acknowledgmentIds* | string[] | Up to 200 acknowledgment instance identifiers |
body.requestId* | string | A unique identifier used to make reminder notification IDs repeatable |
Return Value
json
{
"statusCode": 200,
"data": {
"queued": 2,
"released": 1,
"skipped": 0
},
"message": "Acknowledgment reminders processed"
}Error Codes
400 Bad Request: The request is malformed or contains more than 200 acknowledgment IDs.
Examples
bash
curl -X POST "https://app.wombat.software/api/{targetPath}/acknowledgment-reminders" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer ..." \
-d '{"acknowledgmentIds":["acknowledgment-id-1","acknowledgment-id-2"],"requestId":"request-id"}'ENDPOINTS
post
/api/{targetPath}/acknowledgment-reminders