POST api/B1/UpdateEmployeeAuth

Request Information

URI Parameters

None.

Body Parameters

UPDATEEMPATHU
NameDescriptionTypeAdditional information
UserInformation

UserInformation

None.

empID

integer

None.

PassWord

string

None.

Auth_User

boolean

None.

Auth_TimeSheet

boolean

None.

Auth_DocLogReport

boolean

None.

Auth_UserLogReport

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "UserInformation": {
    "UserName": "sample string 1",
    "Password": "sample string 2",
    "empID": "sample string 3",
    "dbName": "sample string 4",
    "Version": "sample string 5"
  },
  "empID": 1,
  "PassWord": "sample string 2",
  "Auth_User": true,
  "Auth_TimeSheet": true,
  "Auth_DocLogReport": true,
  "Auth_UserLogReport": true
}

application/xml, text/xml

Sample:
<UPDATEEMPATHU xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAPbobs_Access">
  <Auth_DocLogReport>true</Auth_DocLogReport>
  <Auth_TimeSheet>true</Auth_TimeSheet>
  <Auth_User>true</Auth_User>
  <Auth_UserLogReport>true</Auth_UserLogReport>
  <PassWord>sample string 2</PassWord>
  <UserInformation>
    <Password>sample string 2</Password>
    <UserName>sample string 1</UserName>
    <Version>sample string 5</Version>
    <dbName>sample string 4</dbName>
    <empID>sample string 3</empID>
  </UserInformation>
  <empID>1</empID>
</UPDATEEMPATHU>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

ServiceResponse
NameDescriptionTypeAdditional information
Status

boolean

None.

Message

string

None.

Data

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": true,
  "Message": "sample string 2",
  "Data": {}
}

application/xml, text/xml

Sample:
<ServiceResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SAPbobs_Access">
  <Data />
  <Message>sample string 2</Message>
  <Status>true</Status>
</ServiceResponse>