Create an unavailability for an employee.
POST http:///api/v2/business/{businessId}/manager/{employeeId}/rostershift/unavailability
  | Parameter name | Value | Description | Additional | 
|---|---|---|---|
| businessId | string | Required | |
| employeeId | string | Required | 
The request body takes a complete UnavailabilityEditModel resource, containing the following writable properties:
{
    "endDate": "date-time",
    "fromDate": "date-time",
    "id": "int32",
    "reason": "string",
    "recurring": "boolean",
    "recurringDay": "string",
    "recurringDays": "string",
    "toDate": "date-time",
    "viewOnly": "boolean"
}| Name | Type | Description | 
|---|---|---|
| endDate | date-time | Nullable | 
| fromDate | date-time | DateTime | 
| id | int32 | Int32 | 
| reason | string | String | 
| recurring | boolean | Boolean | 
| recurringDay | string | Nullable Possible values are: 
 | 
| recurringDays | string | Nullable Possible values are: 
 | 
| toDate | date-time | Nullable | 
| viewOnly | boolean | Boolean | 
The following HTTP status codes may be returned, optionally with a response resource.
| Status code | Description | Resource | 
|---|---|---|
| 200 | OK OK | ManagerUnavailabilityModel | 
Powered by DapperDox