Signature Reminders
POST /document/many/reminder
This service allows you to manually send signature and/or approval reminders to participants in your document package. It is an alternative to the automatic reminders defined at creation time.
Authentication
Include your private key in the Authorization
header.
Authorization: prk_xxx...
Creation Parameters
Name | Type | Required | Description |
---|---|---|---|
package | String | Required | Document package identifier concatenated with the signer ID, e.g.: ['packageId77'], where 77 is the signer ID. |
🧪 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_public_key_company' \
--header 'Content-Type: application/json' \
--data '{
"package": "packageId77"
}'
import requests
import json
url = "https://dev.auco.ai/v1/ext/document/reminder"
payload = json.dumps({
"package": "packageId77"
})
headers = {
'Authorization': 'prk_public_key_company',
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
const axios = require('axios');
let data = JSON.stringify({
package: 'packageId77',
});
let config = {
method: 'post',
maxBodyLength: Infinity,
url: 'https://dev.auco.ai/v1/ext/document/reminder',
headers: {
Authorization: 'prk_public_key_company',
'Content-Type': 'application/json',
},
data: data,
};
axios
.request(config)
.then((response) => {
console.log(JSON.stringify(response.data));
})
.catch((error) => {
console.log(error);
});
Example Response
{
"message": "OK"
}
⚠️ Error Responses
Code | Description |
---|---|
400 | Document not found or signer ID is incorrect. |
401 | Invalid or missing authentication. |