POST api/UpdateAttendanceSettingForEmployee
Request Information
URI Parameters
None.
Body Parameters
SvcAttendanceSettingRequestMDL| Name | Description | Type | Additional information |
|---|---|---|---|
| EmployeeId | integer |
None. |
|
| AppNotification | boolean |
None. |
|
| Sound | boolean |
None. |
|
| Vibration | boolean |
None. |
|
| AutoAttendance | boolean |
None. |
|
| ManualAttendance | boolean |
None. |
|
| Language | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"EmployeeId": 1,
"AppNotification": true,
"Sound": true,
"Vibration": true,
"AutoAttendance": true,
"ManualAttendance": true,
"Language": "sample string 7"
}
application/xml, text/xml
Sample:
<SvcAttendanceSettingRequestMDL xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FTSMDLClassLibrary.WebAPIMDL"> <AppNotification>true</AppNotification> <AutoAttendance>true</AutoAttendance> <EmployeeId>1</EmployeeId> <Language>sample string 7</Language> <ManualAttendance>true</ManualAttendance> <Sound>true</Sound> <Vibration>true</Vibration> </SvcAttendanceSettingRequestMDL>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ServiceResultOfString| Name | Description | Type | Additional information |
|---|---|---|---|
| Message | string |
None. |
|
| Description | string |
None. |
|
| Result | boolean |
None. |
|
| Data | string |
None. |
|
| status | integer |
None. |
|
| TotalCount | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Message": "sample string 1",
"Description": "sample string 2",
"Result": true,
"Data": "sample string 4",
"status": 5,
"TotalCount": 6
}
application/xml, text/xml
Sample:
<ServiceResultOfstring xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FTSMDLClassLibrary.FTSServices"> <Data>sample string 4</Data> <Description>sample string 2</Description> <Message>sample string 1</Message> <Result>true</Result> <TotalCount>6</TotalCount> <status>5</status> </ServiceResultOfstring>