Reference

Endpoint Delete Request


Name

delete_request

Description

No description available

Related Tables

Requests

Parameters

Parameter Required Options
Name: RequestId

Label: RequestId

YES

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
status_code DT_I4 int
status DT_WSTR nvarchar(180) 180
If the column you are looking for is missing, consider customizing ManagedEngine ServiceDesk Plus (Zoho) Connector.

Input Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
id DT_WSTR nvarchar(4000) 4000
Required columns that you need to supply are bolded.

Examples

SSIS

Use ManagedEngine ServiceDesk Plus (Zoho) Connector in API Source or in API Destination SSIS Data Flow components to read or write data.

API Source

API Source - ManagedEngine ServiceDesk Plus (Zoho)
ManagedEngine (Zoho) ServiceDesk Plus Connector can be used to integrate ServiceDesk Plus data in your App / BI Tools. You can read/write Requests, Tasks, Comments, Worklogs and many other items.
ManagedEngine ServiceDesk Plus (Zoho)
Delete Request
Required Parameters
RequestId Fill-in the parameter...
Optional Parameters
MetaDetectionOrder Default
ContineOn404Error True
SSIS API Source - Read from table or endpoint

API Destination

This Endpoint belongs to the Requests table, therefore it is better to use it, instead of accessing the endpoint directly. Use this table and table-operation pair to delete request:

API Destination - ManagedEngine ServiceDesk Plus (Zoho)
ManagedEngine (Zoho) ServiceDesk Plus Connector can be used to integrate ServiceDesk Plus data in your App / BI Tools. You can read/write Requests, Tasks, Comments, Worklogs and many other items.
ManagedEngine ServiceDesk Plus (Zoho)
Requests
Delete
Required Parameters
RequestId Fill-in the parameter...
Optional Parameters
MetaDetectionOrder Default
ContineOn404Error True
SSIS API Destination - Access table operation

ODBC application

Use these SQL queries in your ODBC application data source:

Delete request

This example shows how to delete a request by ID.

DELETE FROM Requests Where id=111112345

delete_request endpoint belongs to Requests table(s), and can therefore be used via those table(s).

SQL Server

Use these SQL queries in SQL Server after you create a data source in Data Gateway:

Delete request

This example shows how to delete a request by ID.

DECLARE @MyQuery NVARCHAR(MAX) = 'DELETE FROM Requests Where id=111112345';

EXEC (@MyQuery) AT [LS_TO_MANAGEDENGINE_SERVICEDESK_PLUS_ZOHO_IN_GATEWAY];

delete_request endpoint belongs to Requests table(s), and can therefore be used via those table(s).