0.1.0 • Published 8 years ago

cloud-elements-zoho-crm v0.1.0

Weekly downloads
3
License
-
Repository
-
Last release
8 years ago

{element-name}

{ElementName} - JavaScript client for {element-name} This SDK is automatically generated by the Swagger Codegen project:

  • API version: api-v2
  • Package version: api-v2
  • Build date: 2016-04-26T11:48:17.170-06:00
  • Build package: class io.swagger.codegen.languages.JavascriptClientCodegen

Installation

For Node.js

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install {element-name} --save

git

If the library is hosted at a git repository, e.g. https://github.com/YOUR_USERNAME/YOUR_GIT_REPO_ID then install it via:

npm install YOUR_USERNAME/YOUR_GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Getting Started

Please follow the installation instruction and execute the following JS code:

var {ElementName} = require('{element-name}');

var api = new {ElementName}.ZohocrmApi()

var authorization = "authorization_example"; // {String} The authorization tokens. The format for the header value is 'Element <token>, User <user secret>'

var opts = { 
  'where': "where_example", // {String} The CEQL search expression, or the where clause, without the WHERE keyword, in a typical SQL query. For example, to search for accounts last modified on or after 'Jan 15, 2014', the search expression will be <i>where=lastModifiedDate>='2014-01-15T00:00:00.000Z'</i>. When this parameter is omitted, all accounts are returned in a paginated fashion.
  'includeDeleted': true, // {Boolean} Specify if deleted accounts should be included in the search.
  'page': 789, // {Integer} The start page for pagination, which defaults to 1 if not supplied
  'pageSize': 789 // {Integer} The page size for pagination, which defaults to 200 if not supplied
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.accountsGET(authorization, opts, callback);

Documentation for API Endpoints

All URIs are relative to https://console.cloud-elements.com/elements/api-v2/hubs/crm

ClassMethodHTTP requestDescription
{ElementName}.ZohocrmApiaccountsGETGET /accountsFind accounts in the CRM system, using the provided CEQL search expression. The search expression in CEQL is the WHERE clause in a typical SQL query, but without the WHERE keyword. For example, to search for all accounts whose name contains the word 'data', the search expression parameter will be <i>where=name like '%data%'</i>. If a search expression is not provided, then the first 200 records will be returned. <p>If a value of true is specified for the includeDeleted flag, then any soft-deleted records will also be considered in the searched records.
{ElementName}.ZohocrmApiaccountsPOSTPOST /accountsCreate a new account in the CRM system. Account creation will flow through Cloud Elements to your CRM service. With the exception of the 'ACCOUNTID' field, the required fields indicated in the 'Account' model are those required to create a new account.
{ElementName}.ZohocrmApiaccountsaccountIdnotesGETGET /accounts/{accountId}/notesList notes for an account
{ElementName}.ZohocrmApiaccountsaccountIdnotesPOSTPOST /accounts/{accountId}/notesCreate a note for an account
{ElementName}.ZohocrmApiaccountsaccountIdnotesnoteIdDELETEDELETE /accounts/{accountId}/notes/{noteId}Delete a note for an account
{ElementName}.ZohocrmApiaccountsaccountIdnotesnoteIdGETGET /accounts/{accountId}/notes/{noteId}Retrieve a note for an account
{ElementName}.ZohocrmApiaccountsaccountIdnotesnoteIdPATCHPATCH /accounts/{accountId}/notes/{noteId}Update a note for an account
{ElementName}.ZohocrmApiaccountsidDELETEDELETE /accounts/{id}Delete an account associated with a given ACCOUNTID from your CRM system.\nSpecifying an account associated with a given ACCOUNTID that does not exist will result in an error message.
{ElementName}.ZohocrmApiaccountsidGETGET /accounts/{id}Retrieve an account associated with a given ACCOUNTID from the CRM system.Specifying an account with a specified ACCOUNTID that does not exist will result in an error response.
{ElementName}.ZohocrmApiaccountsidPATCHPATCH /accounts/{id}Update an account associated with a given ACCOUNTID in the CRM system. The update API uses the PATCH HTTP verb, so only those fields provided in the account object will be updated, and those fields not provided will be left aloneUpdating an account with a specified ACCOUNTID that does not exist will result in an error response.
{ElementName}.ZohocrmApiactivitiesCallsGETGET /activities-callsSearch for calls
{ElementName}.ZohocrmApiactivitiesCallsPOSTPOST /activities-callsCreate a call
{ElementName}.ZohocrmApiactivitiesCallscallIdDELETEDELETE /activities-calls/{callId}Delete a call
{ElementName}.ZohocrmApiactivitiesCallscallIdGETGET /activities-calls/{callId}Retrieve a call
{ElementName}.ZohocrmApiactivitiesCallscallIdPATCHPATCH /activities-calls/{callId}Update a call
{ElementName}.ZohocrmApiactivitiesEventsGETGET /activities-eventsSearch for events
{ElementName}.ZohocrmApiactivitiesEventsPOSTPOST /activities-eventsCreate an event
{ElementName}.ZohocrmApiactivitiesEventseventIdDELETEDELETE /activities-events/{eventId}Delete an event
{ElementName}.ZohocrmApiactivitiesEventseventIdGETGET /activities-events/{eventId}Retrieve an event
{ElementName}.ZohocrmApiactivitiesEventseventIdPATCHPATCH /activities-events/{eventId}Update an event
{ElementName}.ZohocrmApibulkidobjectNameGETGET /bulk/{id}/{objectName}<span class='betaAPI'>beta</span> Retrieve the results of an asynchronous bulk query.
{ElementName}.ZohocrmApibulkidstatusGETGET /bulk/{id}/status<span class='betaAPI'>beta</span> Retrieve the status of a bulk job.
{ElementName}.ZohocrmApibulkobjectNamePOSTPOST /bulk/{objectName}<span class='betaAPI'>beta</span> Upload a file of objects to be bulk uploaded to the provider.
{ElementName}.ZohocrmApibulkqueryPOSTPOST /bulk/query<span class='betaAPI'>beta</span> Create an asynchronous bulk query job.
{ElementName}.ZohocrmApicampaignsGETGET /campaignsFind campaigns in the CRM system, using the provided CEQL search expression. The search expression in CEQL is the WHERE clause in a typical SQL query, but without the WHERE keyword. For example, to search for all contacts whose name contains the word 'jones', the search expression parameter will be <i>where=name='%jones%'</i>. If a search expression is not provided, then the first 200 records will be returned. <p>If a value of true is specified for the includeDeleted flag, then any soft-deleted records will also be considered in the searched records.
{ElementName}.ZohocrmApicampaignsPOSTPOST /campaignsCreate a new campaign in the CRM system. Campaign creation will flow through Cloud Elements to your CRM service. With the exception of the 'id' field, the required fields indicated in the 'Campaign' model are those required to create a new campaign.
{ElementName}.ZohocrmApicampaignsidDELETEDELETE /campaigns/{id}Delete a campaign associated with a given CAMPAIGNID from your CRM system.\nSpecifying a contact associated with a given CAMPAIGNID that does not exist will result in an error message. .
{ElementName}.ZohocrmApicampaignsidGETGET /campaigns/{id}Retrieve a campaign associated with a given CAMPAIGNID from the CRM system.Specifying a contact with a specified CAMPAIGNID that does not exist will result in an error response.
{ElementName}.ZohocrmApicampaignsidPATCHPATCH /campaigns/{id}Update the contact associated with the given CAMPAIGNID in the CRM system. The update API uses the PATCH HTTP verb, so only those fields provided in the contact object will be updated, and those fields not provided will be left aloneUpdating a contact with a specified CAMPAIGNID that does not exist will result in an error response.
{ElementName}.ZohocrmApicontactsGETGET /contactsFind contacts in the CRM system, using the provided CEQL search expression. The search expression in CEQL is the WHERE clause in a typical SQL query, but without the WHERE keyword. For example, to search for all contacts whose name contains the word 'jones', the search expression parameter will be <i>where=name='%jones%'</i>. If a search expression is not provided, then the first 200 records will be returned. <p>If a value of true is specified for the includeDeleted flag, then any soft-deleted records will also be considered in the searched records.
{ElementName}.ZohocrmApicontactsPOSTPOST /contactsCreate a new contact in the CRM system. Contact creation will flow through Cloud Elements to your CRM service. With the exception of the 'id' field, the required fields indicated in the 'Contact' model are those required to create a new contact.
{ElementName}.ZohocrmApicontactscontactIdnotesGETGET /contacts/{contactId}/notesList notes for a contact
{ElementName}.ZohocrmApicontactscontactIdnotesPOSTPOST /contacts/{contactId}/notesCreate a note for a contact
{ElementName}.ZohocrmApicontactscontactIdnotesnoteIdDELETEDELETE /contacts/{contactId}/notes/{noteId}Delete a note for a contact
{ElementName}.ZohocrmApicontactscontactIdnotesnoteIdGETGET /contacts/{contactId}/notes/{noteId}Retrieve a note for a contact
{ElementName}.ZohocrmApicontactscontactIdnotesnoteIdPATCHPATCH /contacts/{contactId}/notes/{noteId}Update a note for a contact
{ElementName}.ZohocrmApicontactsidDELETEDELETE /contacts/{id}Delete a contact associated with a given CONTACTID from your CRM system.\nSpecifying a contact associated with a given CONTACTID that does not exist will result in an error message. .
{ElementName}.ZohocrmApicontactsidGETGET /contacts/{id}Retrieve a contact associated with a given CONTACTID from the CRM system.Specifying a contact with a specified CONTACTID that does not exist will result in an error response.
{ElementName}.ZohocrmApicontactsidPATCHPATCH /contacts/{id}Update the contact associated with the given CONTACTID in the CRM system. The update API uses the PATCH HTTP verb, so only those fields provided in the contact object will be updated, and those fields not provided will be left aloneUpdating a contact with a specified CONTACTID that does not exist will result in an error response.
{ElementName}.ZohocrmApileadsGETGET /leadsFind leads in the CRM system, using the provided CEQL search expression. The search expression in CEQL is the WHERE clause in a typical SQL query, but without the WHERE keyword. For example, to search for all leads whose name contains the word 'data', the search expression parameter will be <i>where=name like '%data%'</i>. If a search expression is not provided, then the first 200 records will be returned. <p>If a value of true is specified for the includeDeleted flag, then any soft-deleted records will also be considered in the searched records.
{ElementName}.ZohocrmApileadsPOSTPOST /leadsCreate a new lead in the CRM system. Lead creation will flow through Cloud Elements to your CRM service. With the exception of the 'id' field, the required fields indicated in the 'Lead' model are those required to create a new lead.
{ElementName}.ZohocrmApileadsidDELETEDELETE /leads/{id}Delete a lead associated with a given LEADID from the CRM system. Specifying a leadassociated with a given LEADID that does not exist will result in an error message. \n
{ElementName}.ZohocrmApileadsidGETGET /leads/{id}Retrieve a lead associated with a given LEADID from the CRM system.Specifying a lead with a specified LEADID that does not exist will result in an errorresponse.
{ElementName}.ZohocrmApileadsidPATCHPATCH /leads/{id}Update a lead associated with the given LEADID in the CRM system. The update API uses the PATCH HTTP verb, so only those fields provided in the lead object will be updated, and those fields not provided will be left alone.Updating a lead with a specified LEADID that does not exist will result in an error response.
{ElementName}.ZohocrmApileadsleadIdnotesGETGET /leads/{leadId}/notesList notes for a lead
{ElementName}.ZohocrmApileadsleadIdnotesPOSTPOST /leads/{leadId}/notesCreate a note for a lead
{ElementName}.ZohocrmApileadsleadIdnotesnoteIdDELETEDELETE /leads/{leadId}/notes/{noteId}Delete a note for a lead
{ElementName}.ZohocrmApileadsleadIdnotesnoteIdGETGET /leads/{leadId}/notes/{noteId}Retrieve a note for a lead
{ElementName}.ZohocrmApileadsleadIdnotesnoteIdPATCHPATCH /leads/{leadId}/notes/{noteId}Update a note for a lead
{ElementName}.ZohocrmApiobjectNameGETGET /{objectName}Find objects in the CRM system, using the provided object name and CEQL search expression. The search expression in CEQL is the WHERE clause in a typical SQL query, but without the WHERE keyword. For example, to search for all contacts whose name contains the word 'data', the search expression parameter will be <i>where=name like '%data%'</i>. If a search expression is not provided, then the first 200 records will be returned. <p>If a value of true is specified for the includeDeleted flag, then any soft-deleted records will also be considered in the searched records.
{ElementName}.ZohocrmApiobjectNamePOSTPOST /{objectName}Create a new object in the CRM system. The provided objectName can be that of a custom or standard object. Object creation will flow through Cloud Elements to your CRM service.
{ElementName}.ZohocrmApiobjectNameidDELETEDELETE /{objectName}/{id}Delete an object associated with a given object name and ID from the CRM system. Specifying an object associated with a given objectName and ID that does not exist will result in an error message.
{ElementName}.ZohocrmApiobjectNameidGETGET /{objectName}/{id}Retrieve an object associated with a given ID from the CRM system.Specifying an object with a specified ID that does not exist will result in an error response.
{ElementName}.ZohocrmApiobjectNameidPATCHPATCH /{objectName}/{id}Update an object associated with a given object name and ID in the CRM system. The update API uses the PATCH HTTP verb, so only those fields provided in the object will be updated, and those fields not provided will be left alone.Updating an object with a specified ID that does not exist will result in an error response.
{ElementName}.ZohocrmApiobjectsGETGET /objectsGet a list of all the available objects.
{ElementName}.ZohocrmApiobjectsobjectNamemetadataGETGET /objects/{objectName}/metadataGet a list of all the field for an object.
{ElementName}.ZohocrmApiopportunitiesGETGET /opportunitiesFind opportunities in the CRM system, using the provided CEQL search expression. The search expression in CEQL is the WHERE clause in a typical SQL query, but without the WHERE keyword. For example, to search for all opportunities whose name contains the word 'data', the search expression parameter will be <i>where=name like '%data%'</i>. If a search expression is not provided, then the first 200 records will be returned. <p>If a value of true is specified for the includeDeleted flag, then any soft-deleted records will also be considered in the searched records.
{ElementName}.ZohocrmApiopportunitiesPOSTPOST /opportunitiesCreate a new opportunity in the CRM system. Opportunity creation will flow through Cloud Elements to your CRM service. With the exception of the 'id' field, the required fields indicated in the 'Opportunity' model are those required to create a new opportunity.
{ElementName}.ZohocrmApiopportunitiesidDELETEDELETE /opportunities/{id}Delete an opportunity associated with a given POTENTIALID from the CRM system. Specifying an opportunity associated with a given POTENTIALID that does not exist will result in an error message.
{ElementName}.ZohocrmApiopportunitiesidGETGET /opportunities/{id}Retrieve an opportunity associated with a given POTENTIALID from the CRM system.Specifying an opportunity with a specified POTENTIALID that does not exist will result in an error response.
{ElementName}.ZohocrmApiopportunitiesidPATCHPATCH /opportunities/{id}Update the opportunity associated with the given POTENTIALID in the CRM system. The update API uses the PATCH HTTP verb, so only those fields provided in the opportunity object will be updated, and those fields not provided will be left alone.Updating an opportunity with a specified POTENTIALID that does not exist will result in an error response.
{ElementName}.ZohocrmApiopportunitiesopportunityIdnotesGETGET /opportunities/{opportunityId}/notesList notes for an opportunity
{ElementName}.ZohocrmApiopportunitiesopportunityIdnotesPOSTPOST /opportunities/{opportunityId}/notesCreate a note for an opportunity
{ElementName}.ZohocrmApiopportunitiesopportunityIdnotesnoteIdDELETEDELETE /opportunities/{opportunityId}/notes/{noteId}Delete a note for an opportunity
{ElementName}.ZohocrmApiopportunitiesopportunityIdnotesnoteIdGETGET /opportunities/{opportunityId}/notes/{noteId}Retrieve a note for an opportunity
{ElementName}.ZohocrmApiopportunitiesopportunityIdnotesnoteIdPATCHPATCH /opportunities/{opportunityId}/notes/{noteId}Update a note for an opportunity
{ElementName}.ZohocrmApipingGETGET /pingPing the Element to confirm that the Hub Element has a heartbeat. If the Element does not have a heartbeat, an error message will be returned.
{ElementName}.ZohocrmApitasksGETGET /tasksSearch for tasks
{ElementName}.ZohocrmApitasksPOSTPOST /tasksCreate a task
{ElementName}.ZohocrmApitaskstaskIdDELETEDELETE /tasks/{taskId}Delete a task
{ElementName}.ZohocrmApitaskstaskIdGETGET /tasks/{taskId}Retrieve a task
{ElementName}.ZohocrmApitaskstaskIdPATCHPATCH /tasks/{taskId}Update a task
{ElementName}.ZohocrmApiusersGETGET /usersFind users in the CRM system, using the provided CEQL search expression. The search expression in CEQL is the WHERE clause in a typical SQL query, but without the WHERE keyword. For example, to search for all users whose name contains the word 'smith', the search expression parameter will be <i>where=name='%smith%'</i>. If a search expression is not provided, then the first 200 records will be returned. <p>If a value of true is specified for the includeDeleted flag, then any soft-deleted records will also be considered in the searched records.

Documentation for Models

Documentation for Authorization

All endpoints do not require authorization.