🔍 Signature Reminders
POST /document/reminder
This service allows you to manually send signature and/or approval reminders to participants in your document workflow. It serves as an alternative to the automatic reminders configured during the creation process.
Authentication
Include your private key in the Authorization
header.
Authorization: prk_xxx...
Creation Parameters
Name | Type | Required | Description |
---|---|---|---|
code | String | Required | Document code concatenated with the signer ID, e.g.: ['DOCUMENTCODEID'] |
🧪 Usage Example
Reminder to Participant for Signature/Approval
- curl
- Python
- Node.js
curl --location 'https://dev.auco.ai/v1/ext/document/reminder' \
--header 'Authorization: prk_p8nkNZoojJwDdLtiALbIkbT2eHUdVOCq' \
--header 'Content-Type: application/json' \
--data '{
"code": "DCUMENTCODEID"
}'
import requests
import json
url = "https://dev.auco.ai/v1/ext/document/reminder"
payload = json.dumps({
"code": "NV97C00ZBC67"
})
headers = {
'Authorization': 'prk_p8nkNZoojJwDdLtiALbIkbT2eHUdVOCq',
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
const axios = require('axios');
let data = JSON.stringify({
code: 'NV97C00ZBC67',
});
let config = {
method: 'post',
maxBodyLength: Infinity,
url: 'https://dev.auco.ai/v1/ext/document/reminder',
headers: {
Authorization: 'prk_p8nkNZoojJwDdLtiALbIkbT2eHUdVOCq',
'Content-Type': 'application/json',
},
data: data,
};
axios
.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
Response Examples
Document Cancellation
{
"message": "OK"
}
⚠️ Error Responses
Code | Description |
---|---|
400 | Document not found or signer ID is invalid. |
401 | Invalid or missing authentication |