Request Type Id

Request Type Id

Hello, 
According to the official documentation of the Zoho Sign API, in the Create document endpoint, there is some field called request_type_id,  

  1. curl https://sign.zoho.com/api/v1/requests \
  2.     -H "Authorization: Zoho-oauthtoken <Oauth Token>"\
  3.     -F 'file=@Path to file' \
  4.     -F 'data={
  5.   "requests": {
  6.     "request_type_id": "2000000322040",
  7.     "request_name": "NDA ",
  8.     "actions": [
  9.       {
  10.         "recipient_name": "S**********",
  11.         "recipient_email": "s*******@***.com",
  12.         "recipient_phonenumber": "",
  13.         "recipient_countrycode": "",
  14.         "action_type": "SIGN",
  15.         "private_notes": "Please get back to us for further queries",
  16.         "signing_order": 0,
  17.         "verify_recipient": true,
  18.         "verification_type": "EMAIL",
  19.         "verification_code": ""
  20.       }
  21.     ],
  22.     "expiration_days": 1,
  23.     "is_sequential": true,
  24.     "email_reminders": true,
  25.     "reminder_period": 8,
  26.     "folder_id": "2000000489161"
  27.   }
  28. }
What is the use of this field? and how do I use it?