curl -X POST 'https://api.sendforsign.com/api/placeholder' \
     -H 'Authorization: Bearer 123456789' \
     -H 'Content-Type: application/json' \
     -d '{
    "data": {
        "action": "delete",
        "contractKey": "CONTRACT_KEY",
        "placeholder": {
            "placeholderKey": "PLACEHOLDER_KEY"
        }
    }
}'
{
    "code": "200",
    "message": "Placeholder deleted"
}

Body parameters

action
string
required
Action type.
contractKey
string
required
ID of the contract.
placeholder
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/placeholder' \
     -H 'Authorization: Bearer 123456789' \
     -H 'Content-Type: application/json' \
     -d '{
    "data": {
        "action": "delete",
        "contractKey": "CONTRACT_KEY",
        "placeholder": {
            "placeholderKey": "PLACEHOLDER_KEY"
        }
    }
}'
{
    "code": "200",
    "message": "Placeholder deleted"
}