Edits the timesheet with the specified ID. classificationId field left unspecified or null will not be changed. To update classificationId field provide the new value, to specifically clear a value use "0".
POST http:///api/v2/business/{businessId}/manager/{employeeId}/timesheet/{timesheetId}
  | Parameter name | Value | Description | Additional | 
|---|---|---|---|
| employeeId | int32 | Required | |
| timesheetId | int32 | Required | |
| businessId | string | Required | 
The request body takes a complete ManagerTimesheetSubmitModel resource, containing the following writable properties:
{
    "attachment": {
        "data": "byte",
        "dateCreated": "date-time",
        "dateScanned": "date-time",
        "friendlyName": "string",
        "id": "int32",
        "isDeleted": "boolean",
        "isInfected": "boolean",
        "url": "string"
    },
    "breaks": [
        {
            "end": "date-time",
            "isPaidBreak": "boolean",
            "start": "date-time"
        }
    ],
    "classificationId": "int32",
    "comments": "string",
    "dimensionValueIds": [
        "int32"
    ],
    "employeeId": "int32",
    "end": "date-time",
    "hiddenComments": "string",
    "id": "int32",
    "leaveCategoryId": "int32",
    "leaveRequestId": "int32",
    "locationId": "int32",
    "locationIsDeleted": "boolean",
    "payCategoryId": "int32",
    "rate": "double",
    "shiftConditionIds": [
        "int32"
    ],
    "source": "string",
    "start": "date-time",
    "submittedEnd": "date-time",
    "submittedStart": "date-time",
    "units": "double",
    "workTypeId": "int32"
}
| Name | Type | Description | 
|---|---|---|
| attachment | object | Attachment | 
| attachment.data | byte | Byte[] | 
| attachment.dateCreated | date-time | 
      Nullable | 
  
| attachment.dateScanned | date-time | 
      Nullable | 
  
| attachment.friendlyName | string | String | 
| attachment.id | int32 | 
      Nullable | 
  
| attachment.isDeleted | boolean | Boolean | 
| attachment.isInfected | boolean | 
      Nullable | 
  
| attachment.url | string | String | 
| breaks[] | array | |
| breaks[].end | date-time | 
      Nullable | 
  
| breaks[].isPaidBreak | boolean | Boolean | 
| breaks[].start | date-time | 
      Nullable | 
  
| classificationId | int32 | 
      Nullable | 
  
| comments | string | String | 
| dimensionValueIds[] | array of int32 | |
| employeeId | int32 | Int32 | 
| end | date-time | 
      Nullable | 
  
| hiddenComments | string | String | 
| id | int32 | Int32 | 
| leaveCategoryId | int32 | 
      Nullable | 
  
| leaveRequestId | int32 | 
      Nullable | 
  
| locationId | int32 | 
      Nullable | 
  
| locationIsDeleted | boolean | Boolean | 
| payCategoryId | int32 | 
      Nullable | 
  
| rate | double | 
      Nullable | 
  
| shiftConditionIds[] | array of int32 | |
| source | string | 
      Nullable Possible values are: 
  | 
  
| start | date-time | 
      Nullable | 
  
| submittedEnd | date-time | 
      Nullable | 
  
| submittedStart | date-time | 
      Nullable | 
  
| units | double | 
      Nullable | 
  
| workTypeId | int32 | 
      Nullable | 
  
The following HTTP status codes may be returned, optionally with a response resource.
| Status code | Description | Resource | 
|---|---|---|
| 200 | OK OK  | 
          ManagerTimesheetLineModel |