ServiceDesk API User Guide

This page will show work order planning or work order schedule


Displaying Work Order planned list


GET ~/api/JobPlanningView


Applying filtering using Odata

Implementing filtering using OData queries.
Showing Planning relevant to one Work Order :

GET /api/JobPlanningView?$filter=jobs_id+eq+d5a58d13-d516-4009-b7a2-6d7c728154c2

Getting Planning within a date range :
Date Range 2014-09-23T07:00:00.000Z to 2014-10-16T11:45:00.000Z
GET ~/api/JobPlanningView?$filter=date_from+gt+'2014-09-23T07:00:00.000Z'+and+date_to+le+'2014-10-16T11:45:00.000Z'


Displaying single Job Planning

Grab user selected jobplanning.id from the list to show single Job Planning.

GET ~/api/JobPlanningView(User_selected_id)