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"
        }
    }
}'
{
    "result": true,
    "code": "200",
    "message": "Recipient deleted"
}

Body parameters

action
string
required
Action type.
contractKey
string
required
ID of the contract.
recipient
required
Structure.

Response

status
string
The status.
code
string
The code of the answer.
message
string
The message of the answer.
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"
        }
    }
}'
{
    "result": true,
    "code": "200",
    "message": "Recipient deleted"
}