Skip to content

johnEthicalTechnology/zcrm-js-sdk

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 

Repository files navigation

zcrm-js-sdk

Zoho CRM offers REST APIs for communication between several clients. This SDK helps you to make API calls from the domains registered with accounts.zoho.{com/eu/com.cn}.

Refer Building Webapp and Install CLI using ZET before proceeding further

Please follow the steps to work with JS SDK

  • Register the client from CRM UI and note the client id

  • Create a new project using the command 'zet init' via terminal/command line. Choose the option 'Catalyst' and give the project name.

  • New folder will be created with the project name. Inside that, there will be a file plugin_manifest.json. Update the client id in that file and required scopes to be used in the web app

  • Under the project folder, there will be another folder named 'app'. This will act as the base.

  • Include the 'zcrmsdk.js' file (available in app folder) and use it in your html files.

  • ZCRM.API.AUTH.getAccess() will create a token by authenticating the user.

  • After the development, run the command 'zet pack' from the project base folder and upload it in CRM UI. FYI: Only one app can be uploaded for each client. While updating with new app, old one has to be deleted. Also redirect url will be changed.

  • To know the redirect url, ZCRM.API.AUTH.getAccess() function has to be accessed from web app. It'll redirect to accounts.zoho.com/oauth/v2/auth along with a parameter redirect_uri. Take that redirect_uri and configure it in https://api-console.zoho.com/. Eg : if the redirect_uri is "https://99000000223015.zappscontents.com/appfiles/99000000223015/1.0/1dd62561c00429f2c4970bf4f2b4dc09142d08b6949a17a5c3388f30851ec9cf/redirect.html" Then

    "Authorized redirect URIs" is "https://99000000223015.zappscontents.com/appfiles/99000000223015/1.0/1dd62561c00429f2c4970bf4f2b4dc09142d08b6949a17a5c3388f30851ec9cf/redirect.html"

    "JavaScript Domain" is "https://99000000223015.zappscontents.com"

To test it in local machine:-

  • Create a redirect.html page within the app folder.
  • Run it using the 'zet run' via terminal/command line.
  • Enter 127.0.0.1:{your_port_number} for eg. 127.0.0.1:5000 in the browser address bar and select the app_file.html
  • It'll redirect to accounts.zoho.com/oauth/v2/auth along with a parameter redirect_uri. Take that redirect_uri and configure it in https://api-console.zoho.com/.
  • If the page successfully redirects to the redirect.html page then the app works as intended. Note
  • If a single page uses many ajax calls at the same time and the token is not set. All the responses will be empty json object string '{}' . This one has to be handled for every request.
  • Once token is set for the first time, the page will be reloaded.

Object Hierarchy

* - indicates mandatory param and input has to be passed as JSON for the functions

ZCRM

  • AUTH
    • getAccess
    • revokeAccess
  • RECORDS
    • get - (*input.module, input.params)
    • post - (*input.module, *input.body, *headers['Content-Type'])
    • put - (*input.module, *input.body, *headers['Content-Type'])
    • delete - (*input.module, *input.id)
    • getNotes - (*input.module, *input.id)
    • getRelated - (*input.module, *input.id, *input.relatedModule)
    • getAllDeletedRecords - (*input.module)
    • getRecycleBinRecords - (*input.module)
    • getPermanentlyDeletedRecords - (*input.module)
  • SETTINGS
    • getFields - (*input.params, input.id)
    • getLayouts - (*input.params, input.id)
    • getCustomViews - (*input.params, input.id)
    • updateCustomViews - (*input.params, input.id)
    • getModules - (input.module)
    • getRoles - (input.id)
    • getProfiles - (input.id)
    • getRelatedLists - (input.id)
  • ACTIONS
    • convert - (*input.id, *input.body)
  • USERS
    • get - (input.id)
  • ORG
    • get
  • ATTACHMENTS
    • uploadFile - (*input.module, *input.id, *input.x_file_content)
    • deleteFile - (*input.module, *input.id, *input.relatedId)
    • downloadFile - (*input.module, *input.id, *input.relatedId)
    • uploadLink - (*input.module, *input.id, *input.params)
    • uploadPhoto - (*input.module, *input.id, *input.x_file_content)
    • downloadPhoto - (*input.module, *input.id)
    • deletePhoto - (*input.module, *input.id)
  • init

About

JS Sdk for Zoho CRM

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 80.4%
  • HTML 17.6%
  • CSS 2.0%