Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Status
colourGreen
title5.4.0

A pass-through API to ServiceScheduling (when configured) which allows the ServiceScheduling's "Fix Break Times" API to be called.

Description

The sp:FixBreakTimesRequest API method allows the actual time and/or status for an employee's named break.

Info

In this context, the ServiceScheduling "Fix Break Times" API is the sp:FixBreakTimesRequest API.

Panel
borderColorgrey
bgColorwhitesmoke
borderStylesolid

On this page:

Table of Contents
maxLevel2

Related pages:

Resource URL Summary

Panel
borderColorgrey
bgColorwhitesmoke
borderStylesolid

Pass Through Call to ServiceScheduling's "Fix Break Times" API

PUT /up/v5/rest/scheduling/FixBreakTimes

Include Page
_Default HTTP Headers
_Default HTTP Headers


API Specifics

Panel
borderColor#D3D3D3

Pass Through Call to ServiceScheduling's "Fix Break Times" API

This RESTified API will perform a pass-through call to the ServiceScheduling sub-system's "Fix Break Times" API (when configured).

URL

Panel
borderColorgrey
bgColorwhitesmoke
borderStylesolid

PUT /up/v5/rest/scheduling/FixBreakTimes

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 ServiceScheduling "Fix Break Times" APi.

FixBreakTimes Object Format

Code Block
languagejs
titleFixBreakTimes JSON
collapsetrue
{
    "Tech": "EmpID",
    "Breaks": [
        {
            "Name": "",
            "Type": "",
            "Start": "",
            "Duration": 0
        }
    ],
    "Options": {
        "Started": false,
        "Finished": false
    }
}

FixBreakTimes Object Properties

string

SS: BreakName (string)

string

SS: BreakType

string

SS: spDateTime

SS: 16

Pass through parameter to the ServiceScheduling "Fix Break Times" API.

 

The date and time at which the break will start/has started

SS Field: breaks.BreakStart

Yes

Boolean
PropertyTypeLengthDescriptionReq?Field Mapping: ServiceScheduling 
Tech

string

SS: EmpID (string)



Pass through parameter to the ServiceScheduling "Fix Break Times" API. 

The identifier of the employee to whom the break is assigned.

Yes

empID

Breaksarraymax 5

Pass through parameter to the ServiceScheduling "Fix Break Times" API.  

Up to 5 break structures can be supplied if multiple breaks are to be updated. See Breaks.objects

 

PropertyTypeLengthDescriptionReq?
NameSS: 20

Pass through parameter to the ServiceScheduling "Fix Break Times" API. 

The name of the break.

SS Field: breaks.BreakName

Yes

Type

Pass through parameter to the ServiceScheduling "Fix Break Times" API. 

The type of the break.

SS Field: breaks.BreakType

SS Valid Values: "Default", "Overridden", "Fixed"

Yes

Start

Yes

Durationinteger

Pass through parameter to the ServiceScheduling "Fix Break Times" API. 

The length of the break in minutes. The length of the break can be 0 to 999 minutes.

SS Field: breaks.BreakDuration

Yes

breaks

Optionsobject

Pass through parameter to the ServiceScheduling "Fix Break Times" API.

PropertyTypeDescriptionReq?
Started

Pass through parameter to the ServiceScheduling "Fix Break Times" API.

 

When supplied and true, all named breaks supplied will be updated to have a status of Started.

If the options value of Finished is also supplied, SP_OPTION_COMBINATION_INVALID (159) is returned.

If not supplied, and the options value of Finished is also not supplied, then any of the breaks being updated that have previously been set to have a status of either Started or Finished will be set to the Fixed state and SP_OK_BREAK_STATUS_LOST (695) is returned

SS Field: options.Started

No

FinishedBoolean

Pass through parameter to the ServiceScheduling "Fix Break Times" API.

When supplied and true, all named breaks supplied will be updated to have a status of Finished.

If the options value of Started is also supplied, SP_OPTION_COMBINATION_INVALID (159) is returned.

If not supplied, and the options value of Started is also not supplied, then any of the breaks being updated that have previously been set to have a status of either Started or Finished will be set to the Fixed state and SP_OK_BREAK_STATUS_LOST (695) is returned

SS Field:  options.Finished

No













NoNo

see FixBreakTimes.options.object

HTTP Response

Success

On success, a JSON-formatted version of the ServiceScheduling "Fix Break Times" API response will be returned.

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

Error

On error, a JSON-formatted version of the ServiceScheduling "Fix Break Times" API response will be returned.

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

Return Codes

In addition to the Standard Return Codes, and the general ServiceScheduling Return Codes, the specfic ones for this API are:

Expand
  • SP_OK (0)
  • SP_DATE_INVALID (14)
  • SP_OPTIONS_INVALID (80)
  • SP_OPTION_COMBINATION_INVALID (159)
  • SP_EMPID_DOES_NOT_EXIST (231)
  • SP_BREAK_DURATION_INVALID (323)
  • SP_BREAK_EARLIEST_BEFORE_SHIFT_START (353)
  • SP_BREAK_LATEST_AFTER_SHIFT_END (354)
  • SP_OK_WITH_OVERLAPS (373)
  • SP_SO_BREAK_OUTSIDE (557)
  • SP_BREAKSEQ_DUPLICATE_BREAKNAMES (653)
  • SP_BREAKSEQ_OVERLAPS (654)
  • SP_BREAKNAME_INVALID (655)
  • SP_BREAKTYPE_NOT_FIXED (656)
  • SP_BREAKTIME_EARLIEST_INVALID (657)
  • SP_OK_BREAK_STATUS_LOST (695)