Reference

Endpoint Get Asset Details


Name

get_asset_details

Description

No description available

Related Tables

Assets

Parameters

Parameter Required Options
Name: AssetId

Label: AssetId

YES

Output Columns

Label Data Type (SSIS) Data Type (SQL) Length Description
id DT_WSTR nvarchar(100) 100
name DT_WSTR nvarchar(200) 200
loan_start_time_display_value DT_WSTR nvarchar(100) 100
loan_start_time DT_DBTIMESTAMP datetime
loan_id DT_WSTR nvarchar(100) 100
loan_returned_time_display_value DT_WSTR nvarchar(100) 100
loan_returned_time DT_DBTIMESTAMP datetime
loan_barcode DT_WSTR nvarchar(50) 50
loan_due_by_time_display_value DT_WSTR nvarchar(100) 100
loan_due_by_time DT_DBTIMESTAMP datetime
loan_loan_id_display_value DT_WSTR nvarchar(50) 50
loan_loan_id_value DT_WSTR nvarchar(50) 50
retain_user_site DT_BOOL bit
type_name DT_WSTR nvarchar(50) 50
type_id DT_WSTR nvarchar(100) 100
purchase_cost DT_R8 float
state_name DT_WSTR nvarchar(50) 50
state_description DT_WSTR nvarchar(100) 100
state_id DT_WSTR nvarchar(100) 100
barcode DT_WSTR nvarchar(50) 50
product_part_no DT_WSTR nvarchar(50) 50
product_name DT_WSTR nvarchar(50) 50
product_id DT_WSTR nvarchar(100) 100
product_manufacturer DT_WSTR nvarchar(100) 100
site_deleted DT_BOOL bit
site_name DT_WSTR nvarchar(50) 50
site_id DT_WSTR nvarchar(100) 100
product_type_image DT_WSTR nvarchar(50) 50
product_type_name DT_WSTR nvarchar(50) 50
product_type_id DT_WSTR nvarchar(100) 100
location DT_WSTR nvarchar(100) 100
is_loanable DT_BOOL bit
category_name DT_WSTR nvarchar(50) 50
category_description DT_WSTR nvarchar(100) 100
category_id DT_WSTR nvarchar(100) 100
state_history_comments DT_WSTR nvarchar(2000) 2000
last_updated_time_display_value DT_WSTR nvarchar(210) 210
last_updated_time DT_DBTIMESTAMP datetime
created_time_display_value DT_WSTR nvarchar(210) 210
created_time DT_DBTIMESTAMP datetime
created_by_email_id DT_WSTR nvarchar(180) 180
created_by_is_technician DT_BOOL bit
created_by_sms_mail DT_WSTR nvarchar(2550) 2550
created_by_mobile DT_WSTR nvarchar(200) 200
created_by_last_name DT_WSTR nvarchar(40) 40
created_by_user_scope DT_WSTR nvarchar(200) 200
created_by_phone DT_WSTR nvarchar(120) 120
created_by_name DT_WSTR nvarchar(130) 130
created_by_id DT_WSTR nvarchar(180) 180
created_by_photo_url DT_WSTR nvarchar(750) 750
created_by_is_vip_user DT_BOOL bit
created_by_department DT_WSTR nvarchar(2550) 2550
created_by_first_name DT_WSTR nvarchar(80) 80
created_by_job_title DT_WSTR nvarchar(2550) 2550
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
There are no Static columns defined for this endpoint. This endpoint detects columns dynamically at runtime.

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

This Endpoint belongs to the Assets table, therefore it is better to use it, instead of accessing the endpoint directly:

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)
Assets
Required Parameters
AssetId 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 Assets table, therefore it is better to use it, instead of accessing the endpoint directly. Use this table and table-operation pair to get asset details:

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)
Assets
Lookup
Required Parameters
AssetId 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:

Read asset by ID

This example shows how to read extended information about an asset

SELECT * FROM Assets Where id=111112345

get_asset_details endpoint belongs to Assets 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:

Read asset by ID

This example shows how to read extended information about an asset

DECLARE @MyQuery NVARCHAR(MAX) = 'SELECT * FROM Assets Where id=111112345';

EXEC (@MyQuery) AT [LS_TO_MANAGEDENGINE_SERVICEDESK_PLUS_ZOHO_IN_GATEWAY];

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