Clocks out an employee from their existing shift. If they are on a break, it will be ended automatically.

Request

POST https://api.nzpayroll.co.nz/api/v2/business/{businessId}/kiosk/{kioskId}/clockoff

Path parameters

Parameter name Value Description Additional
kioskId int32 Required
businessId string Required

Request body

The request body takes a complete ClockOffModel resource, containing the following writable properties:

{
    "employeeId": "int32",
    "image": "byte",
    "ipAddress": "string",
    "isAdminInitiated": "boolean",
    "isPaidBreak": "boolean",
    "kioskId": "int32",
    "latitude": "double",
    "longitude": "double",
    "note": "string",
    "noteVisibility": "string",
    "recordedTimeUtc": "date-time",
    "utcOffset": "string"
}

Properties

Name Type Description
employeeId int32 Nullable
image byte Byte[]
ipAddress string String
isAdminInitiated boolean Boolean
isPaidBreak boolean Boolean
kioskId int32 Nullable
latitude double Nullable
longitude double Nullable
note string String
noteVisibility string Nullable

Possible values are:

  • Hidden
  • Visible
recordedTimeUtc date-time Nullable
utcOffset string Nullable

Response

The following HTTP status codes may be returned, optionally with a response resource.

Status code Description Resource
200 OK

OK