ManagedEngine ServiceDesk Plus (Zoho) ConnectorZappySys ManagedEngine ServiceDesk Plus (Zoho) Connector provide read / write capability inside your app (see list below), using these drag and drop , high performance connector you can perform many ManagedEngine ServiceDesk Plus (Zoho) operations without any coding. You can use this connector to integrate ManagedEngine ServiceDesk Plus (Zoho) data inside apps like SSIS, SQL Server or popular ETL Platforms / BI Tools/ Reporting Apps / Programming languages (i.e. Informatica, Power BI, SSRS, Excel, C#, JAVA, Python) |
Click on your App below to get started with ManagedEngine ServiceDesk Plus (Zoho) Integration
Actions supported by ManagedEngine ServiceDesk Plus (Zoho) Connector
ManagedEngine ServiceDesk Plus (Zoho) Connector support following actions for REST API integration. If some actions are not listed below then you can easily edit Connector file and enhance out of the box functionality.Parameter | Description |
---|
Parameter | Description |
---|---|
RequestId |
|
Parameter | Description |
---|---|
RequestId |
|
Parameter | Description |
---|---|
RequestId |
|
TaskId |
|
Parameter | Description |
---|---|
RequestId |
|
TaskId |
|
Parameter | Description |
---|---|
RequestId |
|
TaskId |
|
CommentId |
|
Parameter | Description |
---|---|
RequestId |
|
Parameter | Description |
---|---|
RequestId |
|
NoteId |
|
Parameter | Description |
---|---|
RequestId |
|
Parameter | Description |
---|---|
RequestId |
|
WorklogId |
|
Parameter | Description |
---|---|
RequestId |
|
TaskId |
|
Parameter | Description |
---|---|
RequestId |
|
TaskId |
|
WorklogId |
|
Parameter | Description |
---|---|
RequestId |
|
Parameter | Description |
---|
Parameter | Description |
---|---|
ChangeId |
|
Parameter | Description |
---|---|
ChangeId |
|
Parameter | Description |
---|---|
ChangeId |
|
TaskId |
|
Parameter | Description |
---|---|
ChangeId |
|
TaskId |
|
Parameter | Description |
---|---|
ChangeId |
|
TaskId |
|
CommentId |
|
Parameter | Description |
---|---|
ChangeId |
|
Parameter | Description |
---|---|
ChangeId |
|
NoteId |
|
Parameter | Description |
---|---|
ChangeId |
|
Parameter | Description |
---|---|
ChangeId |
|
WorklogId |
|
Parameter | Description |
---|---|
ChangeId |
|
TaskId |
|
Parameter | Description |
---|---|
ChangeId |
|
TaskId |
|
WorklogId |
|
Parameter | Description |
---|
Parameter | Description |
---|---|
ProblemId |
|
Parameter | Description |
---|---|
ProblemId |
|
Parameter | Description |
---|---|
ProblemId |
|
TaskId |
|
Parameter | Description |
---|---|
ProblemId |
|
TaskId |
|
Parameter | Description |
---|---|
ProblemId |
|
TaskId |
|
CommentId |
|
Parameter | Description |
---|---|
ProblemId |
|
Parameter | Description |
---|---|
ProblemId |
|
NoteId |
|
Parameter | Description |
---|---|
ProblemId |
|
Parameter | Description |
---|---|
ProblemId |
|
WorklogId |
|
Parameter | Description |
---|---|
ProblemId |
|
TaskId |
|
Parameter | Description |
---|---|
ProblemId |
|
TaskId |
|
WorklogId |
|
Parameter | Description |
---|
Parameter | Description |
---|---|
ProjectId |
|
Parameter | Description |
---|---|
ProjectId |
|
Parameter | Description |
---|---|
ProjectId |
|
Parameter | Description |
---|---|
ProjectId |
|
Parameter | Description |
---|---|
ProjectId |
|
MilestoneId |
|
Parameter | Description |
---|---|
ProjectId |
|
TaskId |
|
Parameter | Description |
---|---|
ProjectId |
|
TaskId |
|
Parameter | Description |
---|---|
ProjectId |
|
TaskId |
|
CommentId |
|
Parameter | Description |
---|---|
ProjectId |
|
Parameter | Description |
---|---|
ProjectId |
|
NoteId |
|
Parameter | Description |
---|---|
ProjectId |
|
Parameter | Description |
---|---|
ProjectId |
|
WorklogId |
|
Parameter | Description |
---|---|
ProjectId |
|
TaskId |
|
Parameter | Description |
---|---|
ProjectId |
|
TaskId |
|
WorklogId |
|
Parameter | Description |
---|
Parameter | Description |
---|---|
ReleaseId |
|
Parameter | Description |
---|---|
ReleaseId |
|
Parameter | Description |
---|---|
ReleaseId |
|
TaskId |
|
Parameter | Description |
---|---|
ReleaseId |
|
TaskId |
|
Parameter | Description |
---|---|
ReleaseId |
|
TaskId |
|
CommentId |
|
Parameter | Description |
---|---|
ReleaseId |
|
Parameter | Description |
---|---|
ReleaseId |
|
NoteId |
|
Parameter | Description |
---|---|
ReleaseId |
|
Parameter | Description |
---|---|
ReleaseId |
|
WorklogId |
|
Parameter | Description |
---|---|
ReleaseId |
|
TaskId |
|
Parameter | Description |
---|---|
ReleaseId |
|
TaskId |
|
WorklogId |
|
Parameter | Description |
---|
Parameter | Description |
---|---|
AssetId |
|
Parameter | Description |
---|
Parameter | Description |
---|---|
TaskId |
|
Parameter | Description |
---|
Parameter | Description |
---|---|
ContractId |
|
Parameter | Description |
---|
Parameter | Description |
---|---|
PurchaseOrderId |
|
Parameter | Description |
---|---|
Url |
|
Body |
|
IsMultiPart |
|
Filter |
|
Headers |
|
ManagedEngine ServiceDesk Plus (Zoho) Connector Examples (For ODBC PowerPack)
This page offers a collection of SQL examples designed for seamless integration with the ZappySys API ODBC Driver under ODBC Data Source (36/64) or ZappySys Data Gateway, enhancing your ability to connect and interact with Prebuilt Connectors effectively.
List requests [Read more...]
This example shows how to list requests.
SELECT * FROM Requests
Read request details by ID [Read more...]
This example shows how to read extended information about a single request
SELECT * FROM Requests Where id=111112345
Delete request [Read more...]
This example shows how to delete a request by ID.
DELETE FROM Requests Where id=111112345
List request tasks [Read more...]
This example shows how to read all tasks for a single Request ID
SELECT * FROM get_Request_Tasks WITH (RequestId=111112345)
Read request task details [Read more...]
This example shows how to read request task details by single Request ID and Task ID
SELECT * FROM get_Request_Task_Details (RequestId=111112345, TaskId=222212345)
List request task comments [Read more...]
This example shows how to read all comment for specific task
SELECT * FROM get_Request_Task_Comments (RequestId=111112345, TaskId=222212345)
Read request task comment details [Read more...]
This example shows how to read a single comment details for a specific task
SELECT * FROM get_Request_Task_Comment_Details (RequestId=111112345, TaskId=222212345, CommentId=333312345)
List request notes [Read more...]
This example shows how to read all notes for a single Request ID
SELECT * FROM get_Request_Notes WITH (RequestId=111112345)
Read request note details [Read more...]
This example shows how to read request note details by single Request ID and Note ID
SELECT * FROM get_Request_Note_Details (RequestId=111112345, NoteId=222212345)
List request worklog [Read more...]
This example shows how to read all worklogs for a single Request ID
SELECT * FROM get_Request_Worklogs WITH (RequestId=111112345)
Read request worklog details [Read more...]
This example shows how to read request worklog details by single Request ID and Worklog ID
SELECT * FROM get_Request_Worklog_Details (RequestId=111112345, WorklogId=222212345)
List request task worklog [Read more...]
This example shows how to read all worklogs for a single Request Task ID
SELECT * FROM get_Request_Task_Worklogs WITH (RequestId=111112345, TaskId=22222345)
Read request task worklog details [Read more...]
This example shows how to read request task worklog details by single Request Task ID and Worklog ID
SELECT * FROM get_Request_Task_Worklog_Details (RequestId=111112345, TaskId=22222345, WorklogId=333312345)
List projects [Read more...]
This example shows how to list projects.
SELECT * FROM Projects
Read project details by ID [Read more...]
This example shows how to read extended information about a single project
SELECT * FROM Projects Where id=111112345
List assets [Read more...]
This example shows how to list assets.
SELECT * FROM Assets
Read asset by ID [Read more...]
This example shows how to read extended information about an asset
SELECT * FROM Assets Where id=111112345
List purchase orders [Read more...]
This example shows how to list purchase orders.
SELECT * FROM PurchaseOrders
Read purchase order details by ID [Read more...]
This example shows how to read extended information about a single purchase order
SELECT * FROM PurchaseOrders Where id=111112345
List changes [Read more...]
This example shows how to list changes.
SELECT * FROM Changes
Read change details by ID [Read more...]
This example shows how to read extended information about a change
SELECT * FROM Changes Where id=111112345
List contracts [Read more...]
This example shows how to list contracts.
SELECT * FROM Contracts
Read contract details by ID [Read more...]
This example shows how to read extended information about a contract
SELECT * FROM Contracts Where id=111112345
List tasks [Read more...]
This example shows how to list tasks.
SELECT * FROM Tasks
Read task details by ID [Read more...]
This example shows how to read extended information about a task
SELECT * FROM Tasks Where id=111112345