Skip to content

  • Projects
  • Groups
  • Snippets
  • Help
    • Loading...
    • Help
    • Submit feedback
    • Contribute to GitLab
  • Sign in
D
Documentation
  • Project
    • Project
    • Details
    • Activity
    • Releases
    • Cycle Analytics
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Charts
  • Issues 0
    • Issues 0
    • List
    • Board
    • Labels
    • Milestones
  • Merge Requests 0
    • Merge Requests 0
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
    • Charts
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
    • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • vtap
  • Documentation
  • Wiki
  • Core server resources

Core server resources

Last edited by Vikas Jul 01, 2021
Page history

This page list downs all the server side resources that can be used to get or send Vtiger data.

For example

  • If you want to create Contacts record.
  • If you want to update a record.
  • If you want to get related Quotes for a Deals record and more.
  • /records

/records

GET /records - returns vtiger records.

Parameters

Name Type Description
module* String name of the module
id Integer id of the record
filterid Integer id of the filter, if filterid and id is not provided then default user filter is taken and filter records will be returned
page Integer page number when filterid is used
pagelimit Integer number of records in the filter to be returned
sortfield String name of the field
sortorder String ASC or DESC
fields String field names separated by commas

Example :

VTAP.Api.Get('records', {module:'Contacts', 'id':'122'}, (error, response) => {
    
});

VTAP.Api.Get('records', {module:'Contacts', 'filterid':'1', 'page':2, 'fields':'firstname,lastname,email'}, (error, response) => {
    
});
Clone repository
  • API Designer
  • Core server resources
  • Module Designer
  • VTAP Javascript APIs
  • Home
More Pages

New Wiki Page

Tip: You can specify the full path for the new file. We will automatically create any missing directories.