Create or update an individual roster shift
POST http:///api/v2/business/{businessId}/rostershift
  | Parameter name | Value | Description | Additional | 
|---|---|---|---|
| businessId | string | Required | 
| Parameter name | Value | Description | Additional | 
|---|---|---|---|
| publish | boolean | 
The request body takes a complete RosterShiftEditModel resource, containing the following writable properties:
{
    "breaks": [
        {
            "endTime": "date-time",
            "id": "int32",
            "isPaidBreak": "boolean",
            "startTime": "date-time"
        }
    ],
    "employeeId": "int32",
    "employeeName": "string",
    "endTime": "date-time",
    "id": "int32",
    "locationId": "int32",
    "locationName": "string",
    "notes": "string",
    "qualifications": [
        {
            "id": "int32",
            "name": "string"
        }
    ],
    "role": {
        "className": "string",
        "hexColourCode": "string",
        "id": "int32",
        "name": "string"
    },
    "startTime": "date-time",
    "workTypeId": "int32",
    "workTypeName": "string"
}| Name | Type | Description | 
|---|---|---|
| breaks[] | array | |
| breaks[].endTime | date-time | DateTime | 
| breaks[].id | int32 | Int32 | 
| breaks[].isPaidBreak | boolean | Boolean | 
| breaks[].startTime | date-time | DateTime | 
| employeeId | int32 | Nullable | 
| employeeName | string | String | 
| endTime | date-time | DateTime | 
| id | int32 | Int32 | 
| locationId | int32 | Nullable | 
| locationName | string | String | 
| notes | string | String | 
| qualifications[] | array | |
| qualifications[].id | int32 | Int32 | 
| qualifications[].name | string | String | 
| role | object | RosterShiftRole | 
| role.className | string | String | 
| role.hexColourCode | string | String | 
| role.id | int32 | Int32 | 
| role.name | string | String | 
| startTime | date-time | DateTime | 
| workTypeId | int32 | Nullable | 
| workTypeName | string | String | 
The following HTTP status codes may be returned, optionally with a response resource.
| Status code | Description | Resource | 
|---|---|---|
| 200 | OK OK | NzEssRosterShiftModel | 
| 400 | Bad Request Bad Request | String | 
| 404 | Not Found Not Found | ProblemDetails | 
Powered by DapperDox