Hello,
According to the official documentation of the Zoho Sign API, in the Create document endpoint, there is some field called request_type_id,
- curl https://sign.zoho.com/api/v1/requests \
- -H "Authorization: Zoho-oauthtoken <Oauth Token>"\
- -F 'file=@Path to file' \
- -F 'data={
- "requests": {
- "request_type_id": "2000000322040",
- "request_name": "NDA ",
- "actions": [
- {
- "recipient_name": "S**********",
- "recipient_email": "s*******@***.com",
- "recipient_phonenumber": "",
- "recipient_countrycode": "",
- "action_type": "SIGN",
- "private_notes": "Please get back to us for further queries",
- "signing_order": 0,
- "verify_recipient": true,
- "verification_type": "EMAIL",
- "verification_code": ""
- }
- ],
- "expiration_days": 1,
- "is_sequential": true,
- "email_reminders": true,
- "reminder_period": 8,
- "folder_id": "2000000489161"
- }
- }
What is the use of this field? and how do I use it?