POST /api/v1/invitations/bulk/reminders/send — Send Bulk Reminders
Send reminder notifications to multiple signers in a single request. Use this for batch follow-up campaigns.
Authentication
SadqAuthorize
Request Headers
- Authorization (required)
- Bearer {token}
- Content-Type (required)
- application/json
Request Body
Content-Type: application/json
[
{
"requestId": "9af7cb57-436f-40e9-b05c-75d05732db1c",
"destinationEmail": "ahmed.alsaud@example.com",
"destinationPhone": "+966501234567"
},
{
"requestId": "a1b2c3d4-5e6f-7g8h-9i0j-1k2l3m4n5o6p",
"destinationEmail": "fatima.otaibi@example.com",
"destinationPhone": null
}
]Responses
HTTP 200 — Bulk reminders sent successfully
{
"data": true,
"errorCode": 0,
"message": "",
"returnUrl": "/dashboard",
"stateValidationErrors": null,
"signature": ""
}HTTP 200 — The email not belong to this envelop
{
"data": true,
"errorCode": 121,
"message": "The email not belong to this envelop ",
"returnUrl": "/dashboard",
"stateValidationErrors": null,
"signature": ""
}