API Documentation
MCP
Contract
PDF and Word
Placeholder
Template
Recipient
Delete recipient
Delete an existing recipient.
Copy
curl -X POST 'https://api.sendforsign.com/api/recipient' \
-H 'Authorization: Bearer 123456789' \
-H 'Content-Type: application/json' \
-d '{
"data": {
"action": "delete",
"contractKey": "CONTRACT_KEY",
"recipient": {
"recipientKey": "RECIPIENT_KEY"
}
}
}'
Copy
{
"result": true,
"code": "200",
"message": "Recipient deleted"
}
Body parameters
Action type.
ID of the contract.
Structure.
Key of the recipient that needs to be deleted.
Response
The status.
The code of the answer.
The message of the answer.
Copy
curl -X POST 'https://api.sendforsign.com/api/recipient' \
-H 'Authorization: Bearer 123456789' \
-H 'Content-Type: application/json' \
-d '{
"data": {
"action": "delete",
"contractKey": "CONTRACT_KEY",
"recipient": {
"recipientKey": "RECIPIENT_KEY"
}
}
}'
Copy
{
"result": true,
"code": "200",
"message": "Recipient deleted"
}
Copy
curl -X POST 'https://api.sendforsign.com/api/recipient' \
-H 'Authorization: Bearer 123456789' \
-H 'Content-Type: application/json' \
-d '{
"data": {
"action": "delete",
"contractKey": "CONTRACT_KEY",
"recipient": {
"recipientKey": "RECIPIENT_KEY"
}
}
}'
Copy
{
"result": true,
"code": "200",
"message": "Recipient deleted"
}
Assistant
Responses are generated using AI and may contain mistakes.