Table Projects
Description
No description available
Supported Operations
Below section contains supported CRUD operations. Each operation is executed by some EndPoint behind the scene.| Method | Supported | Reference EndPoint |
|---|---|---|
| SELECT | get_projects | |
| INSERT | ||
| UPDATE | ||
| UPSERT | ||
| DELETE | ||
| LOOKUP | get_project_details |
Examples
SSIS
Use ManageEngine ServiceDesk Plus (Zoho) Connector in API Source component to read data or in API Destination component to read/write data:
Read from Projects table using API Source
| Optional Parameters | |
|---|---|
| ContineOn404Error | True |
Read/write to Projects table using API Destination
| Optional Parameters | |
|---|---|
| ContineOn404Error | True |
ODBC application
Use these SQL queries in your ODBC application data source:
Read projects
<p>Reads all projects from the system. This query retrieves a list of ongoing and past projects managed within ServiceDesk Plus.</p> <p>The <code>Projects</code> table contains high-level project information, allowing you to oversee project statuses and details.</p>
SELECT * FROM Projects
Read project by ID
<p>Reads detailed information about a specific project identified by its ID. This is useful for drilling down into the specifics of a single project.</p> <p>Use the <code>WHERE id=...</code> clause to filter the <code>Projects</code> table for a specific record. Replace <code>111112345</code> with the project ID.</p>
SELECT * FROM Projects WHERE id=111112345
SQL Server
Use these SQL queries in SQL Server after you create a data source in Data Gateway:
Read projects
<p>Reads all projects from the system. This query retrieves a list of ongoing and past projects managed within ServiceDesk Plus.</p> <p>The <code>Projects</code> table contains high-level project information, allowing you to oversee project statuses and details.</p>
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Projects';
EXEC (@MyQuery) AT [LS_TO_MANAGEENGINE_SERVICEDESK_PLUS_ZOHO_IN_GATEWAY];
Read project by ID
<p>Reads detailed information about a specific project identified by its ID. This is useful for drilling down into the specifics of a single project.</p> <p>Use the <code>WHERE id=...</code> clause to filter the <code>Projects</code> table for a specific record. Replace <code>111112345</code> with the project ID.</p>
DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Projects WHERE id=111112345';
EXEC (@MyQuery) AT [LS_TO_MANAGEENGINE_SERVICEDESK_PLUS_ZOHO_IN_GATEWAY];