Skip to main content
POST
/
api
/
settings
curl -X POST 'https://api.sendforsign.com/api/settings' \
     -H 'X-Sendforsign-Key: YOUR_API_KEY' \
     -H 'Content-Type: application/json' \
     -d '{
    "data": {
        "type": "brandings",
        "clientKey": "YOUR_CLIENT_KEY",
        "branding": {
            "emailFrom": "",
            "emailDomain": "",
            "recipientLinkDomain": "",
            "emailExplainer": "",
            "emailLogo": "",
            "emailButtonColor": "",
            "recipientPageBranding": true
        }
    }
}'
{
    "code": "201",
    "message": "Settings updated"
}

Documentation Index

Fetch the complete documentation index at: https://about.sendforsign.com/llms.txt

Use this file to discover all available pages before exploring further.

You can customize the appearance of the emails you send via Sendforsign’s infrastructure, use your own email domain, change the domain of recipient links you generate, and more.

Body parameters

data
object
required

Response

code
string
The code of the answer.
message
string
The message of the answer.
curl -X POST 'https://api.sendforsign.com/api/settings' \
     -H 'X-Sendforsign-Key: YOUR_API_KEY' \
     -H 'Content-Type: application/json' \
     -d '{
    "data": {
        "type": "brandings",
        "clientKey": "YOUR_CLIENT_KEY",
        "branding": {
            "emailFrom": "",
            "emailDomain": "",
            "recipientLinkDomain": "",
            "emailExplainer": "",
            "emailLogo": "",
            "emailButtonColor": "",
            "recipientPageBranding": true
        }
    }
}'
{
    "code": "201",
    "message": "Settings updated"
}