GET api/MerchantApp/BindEmployeeabcd?CityId={CityId}&LoginFrom={LoginFrom}&EmployeeId={EmployeeId}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
CityId

integer

Default value is 0

LoginFrom

string

Default value is

EmployeeId

integer

Default value is 0

Body Parameters

None.

Response Information

Resource Description

ServiceResultOfListOfFTSEmployeewithRole
NameDescriptionTypeAdditional information
Message

string

None.

Description

string

None.

Result

boolean

None.

Data

Collection of FTSEmployeewithRole

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": [
    {
      "EmployeeId": 1,
      "EmployeeName": "sample string 2",
      "RoleName": "sample string 3"
    },
    {
      "EmployeeId": 1,
      "EmployeeName": "sample string 2",
      "RoleName": "sample string 3"
    }
  ],
  "status": 4,
  "TotalCount": 5
}

application/xml, text/xml

Sample:
<ServiceResultOfArrayOfFTSEmployeewithRole_PUa0JunP xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FTSMDLClassLibrary.FTSServices">
  <Data xmlns:d2p1="http://schemas.datacontract.org/2004/07/FTSMDLClassLibrary.WebAPIMDL">
    <d2p1:FTSEmployeewithRole>
      <d2p1:EmployeeId>1</d2p1:EmployeeId>
      <d2p1:EmployeeName>sample string 2</d2p1:EmployeeName>
      <d2p1:RoleName>sample string 3</d2p1:RoleName>
    </d2p1:FTSEmployeewithRole>
    <d2p1:FTSEmployeewithRole>
      <d2p1:EmployeeId>1</d2p1:EmployeeId>
      <d2p1:EmployeeName>sample string 2</d2p1:EmployeeName>
      <d2p1:RoleName>sample string 3</d2p1:RoleName>
    </d2p1:FTSEmployeewithRole>
  </Data>
  <Description>sample string 2</Description>
  <Message>sample string 1</Message>
  <Result>true</Result>
  <TotalCount>5</TotalCount>
  <status>4</status>
</ServiceResultOfArrayOfFTSEmployeewithRole_PUa0JunP>