/
UpdateJob RESTified API

UpdateJob RESTified API

5.4.0

A pass-through API to Scheduling (when configured) which allows the Scheduling's "Job Update Request" API to be called.

Description 

The sp:JobUpdateRequest API method allows a job’s priority, importance, access hours and customer information to be updated without the need for the job to be re-booked.

The changes allowed to a job's access hours are:

  1. to use the existing access hours that overlap the operative day that the job is already scheduled on;
  2. to use the existing access hours that overlap the operative day that the job is already scheduled on plus a single supplied closed period; or
  3. to replace the existing access hours with one or more open access hours overrides.  

If any of these changes are made to the job’s access hours, all of its existing other access hours will be permanently removed. If they are subsequently required, the job should be rebooked.

In all cases, the job’s existing ETA (and ETF if it’s a call-to-fix job) must lie within the resulting access hours, otherwise SP_ETA_OUTSIDE_ACC_HOURS (447) will be returned. The job is never moved as a result of a call to sp:JobUpdateRequest, so that it remains in a position in the schedule where it fits in with the other jobs. Allowing the ETA to be outside the supplied access hours would mean that the job would immediately be in jeopardy with no guarantee that it could be re-scheduled to be done within those access hours. In such a situation, the job should be re-booked to determine if it can be re-scheduled within the required access hours.  

In this context, the Scheduling "Update Job" API is the sp:JobUpdateRequest API.

On this page:

Related pages:

Resource URL Summary


Pass Through Call to Scheduling's "JobUpdateRequest" API

PUT /up/v5/rest/scheduling/UpdateJob

HTTP Headers

This API uses the standard ServiceBroker HTTP Headers.


API Specifics


Pass Through Call to Scheduling's "Job Update Request" API

This RESTified API will perform a pass-through call to the Scheduling sub-system's "Job Update Request" API (when configured).

URL

PUT /up/v5/rest/scheduling/UpdateJob

HTTP Request Body

This request requires a JSON object supplied in the HTTP request body, which defines the parameters that will be passed through to the Scheduling "Job Update Request" API.

Update Object Format

UpdateJob JSON
{
	"Id": "",
	"Priority": "",
	"Importance": "",
	"OpenAccHoursOvrs": {
		"Start": "",
		"End": ""
	},
	"CheckEmp": "",
	"ClosedAccHoursOvr": {
		"Start": "",
		"End": ""
	},
	"Customer": {
		"CustID": "",
		"CustName": "",
		"CustAddress": "",
		"ContactName": "",
		"PhoneNum": ""
	},
	"Options": {
		"FixToEmp": false,
		"UseAccessHours": false,
		"SetNotFixed": false,
		"SetUnEarmark": false,
		"SetDispStatusBack": false,
		"SetConfirmed": false,
		"RemoveMandatory": false
	}
}
PropertyTypeLengthDescriptionReq?Field Mapping: 
Scheduling
Id

string

SS: 50

Caller’s identifier of the job to be updated. It must exist in the database otherwise SP_JOBID_INVALID (1) is returned.

Yes

jobID

Priority

integer


Priority the job should be given. If the parameter is not supplied, no change will be made to the related value.

No

priority

Importance

Integer


Importance the job should be given. (Normally a ‘confirmed’ job’s Importance should be raised to make it less likely that the job will be deallocated.).

If the parameter is not supplied, no change will be made to the related value.

No

importance

OpenAccHoursOvrsobject

These two fields, along with the UseAccHours Option (below) can optionally be used to make changes to the job’s Access Hours:

1) If UseAccHours is not set, OpenAccHoursOvrs and ClosedAccHoursOvr replace all of the job’s existing access hours (from both access hours patterns and existing access hours overrides).

2) If UseAccHours is set, ClosedAccHoursOvr can be  supplied (a single closed period), the OpenAccHoursOvrs parameter must not be supplied, otherwise SP_OPT_USE_AH_INVALID (450) is returned.

If the job’s existing ETA wouldn’t be within its resulting access hours, SP_ETA_OUTSIDE_ACC_HOURS (447) is returned. (There is no override.)

ClosedAccHoursOvr takes precedence over existing and supplied open access hours.

If this parameter is not supplied, no changes to access hours will be made as a result of this call.

Both start and end must be specified.

No

see: UpdateJob.OpenAccHoursOvrs.options

CheckEmp

string

SS: 25

Operative that the job should already be allocated to.  If it isn’t, SP_WRONG_EMP (492) is returned.  If this check isn’t required, the field should be omitted

No

checkEmp

ClosedAccHoursOvrobject

Pass through parameter to the Scheduling UpdateJob API. 

No.options

see: UpdateJob.ClosedAccHoursOvr.options

Customer

object



Customer information for the job.


No

see UpdateJob.Customer.objects

Optionsobject

Provides the ability to update the options associated with the job.

If both FixToEmp and RemoveMandatory are supplied, SP_OPTION_COMBINATION_INVALID (159) will be returned


No

see UpdateJob.options.objects

HTTP Response

Success

On success, a JSON-formatted version of the Scheduling "Job Update Request" API response will be returned.

{
	"Success": true,
	"Code": "0",
	"Message": "",
	"Payload": {
    	"result": {
      		"type": "OK",
      		"code": "0"
    	}
  	}
}

Error

On error, a JSON-formatted version of the Scheduling "Job Update Request" API response will be returned.

{
    "Success": false,
    "Code": 9,
    "Payload": {
        "returnCode": {
            "type": "Error",
            "code": "SCH Error Code"
        }
    }
}

Return Codes

In addition to the Standard Return Codes, and the Scheduling API return codes, the possible Return Codes from this API are:

 Click here to expand...
  • SP_OK (0)
  • SP_JOBID_INVALID (1)
  • SP_OUTSIDE_HORIZON (53)
  • SP_OPTIONS_INVALID (80)
  • SP_PRIORITY_INVALID (81)
  • SP_CUSTID_INVALID (95)
  • SP_CUSTNAME_INVALID (96)
  • SP_CUSTADD1_INVALID (97)
  • SP_CUSTADD2_INVALID (98)
  • SP_CUSTADD3_INVALID (99)
  • SP_CUSTADD4_INVALID (100)
  • SP_CONTACTNAME_INVALID (101)
  • SP_CUSTPHONE1_INVALID (102)
  • SP_CUSTPHONE2_INVALID (103)
  • SP_UNRESOURCED_JOB (148)
  • SP_OPTION_COMBINATION_INVALID (159)
  • SP_IMPORTANCE_INVALID (287)
  • SP_DST_TIME_INVALID (379)
  • SP_OPEN_ENDED_ACCHOURS_NOT_ALLOWED (391)
  • SP_DATETIMERANGESEQ_RANGES_NULL (431)
  • SP_OPENHOURSOVRTYPE_INVALID (433)
  • SP_OPENACCHOURSOVR_START_INVALID (434)
  • SP_OPENACCHOURSOVR_END_INVALID (435)
  • SP_OPENACCHOURSOVR_END_NOT_GT_START (436)
  • SP_CLOSEDACCHOURSOVR_START_INVALID (437)
  • SP_CLOSEDACCHOURSOVR_END_INVALID (438)
  • SP_CLOSEDACCHOURSOVR_END_NOT_GT_START (439)
  • SP_NO_ACCHOURS (443)
  • SP_ETA_OUTSIDE_ACC_HOURS (447)
  • SP_OPT_USE_AH_INVALID (450)
  • SP_PRIORITY_NO_COST (475)
  • SP_IMPORTANCE_NO_COST (476)
  • SP_JOB_IS_APPOINTMENT (477)
  • SP_WRONG_EMP (492)
  • SP_CLEARED_JOB (493)

Please Note:

The sp:JobUpdateRequest SOAP API can not be called for an Appointment: SP_JOB_IS_APPOINTMENT (477) will be returned.

The sp:JobUpdateRequest SOAP API can only be called for resourced Jobs except when only updating Customer, Priority and/or Importance: SP_UNRESOURCED_JOB (148) is returned.

It can also only be called for Jobs whose dispatch status isn’t Logged Off or Cleared: SP_CLEARED_JOB (493) is returned otherwise.





Related content