Sending documents for signature via SMS
To send a signing link to the mobile number of a recipient delivery_mode param to be set as EMAIL_SMS and recipients phone number along with country code to be passed.
Popular countries and their respective codes are:
Country code | Country name |
---|---|
AU | Australia |
CA | Canada |
IN | India |
IE | Ireland |
JP | Japan |
You can find the list of all the countries here.
Sample Payload
{
"requests": {
"actions": [
{
"delivery_mode": "EMAIL_SMS",
"recipient_countrycode_iso": "IN",
"recipient_phonenumber": "9999999999"
}
]
}
}