GET api/GetAllUser/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

GetAllUserVm
NameDescriptionTypeAdditional information
Count

integer

None.

Id

integer

None.

Name

string

None.

Mobile

string

None.

Email

string

None.

Username

string

None.

Role

string

None.

Designation

string

None.

TeamId

integer

None.

TeamName

string

None.

LastLogin

string

None.

IsActive

boolean

None.

IsOnHoliday

boolean

None.

IsLeadAssignee

boolean

None.

IsCallLogSyncActive

boolean

None.

LastCallLogSyncAt

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "Count": 1,
  "Id": 2,
  "Name": "sample string 3",
  "Mobile": "sample string 4",
  "Email": "sample string 5",
  "Username": "sample string 6",
  "Role": "sample string 7",
  "Designation": "sample string 8",
  "TeamId": 1,
  "TeamName": "sample string 9",
  "LastLogin": "sample string 10",
  "IsActive": true,
  "IsOnHoliday": true,
  "IsLeadAssignee": true,
  "IsCallLogSyncActive": true,
  "LastCallLogSyncAt": 15
}

application/xml, text/xml

Sample:
<GetAllUserVm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BrokerServer.Services.User">
  <Count>1</Count>
  <Designation>sample string 8</Designation>
  <Email>sample string 5</Email>
  <Id>2</Id>
  <IsActive>true</IsActive>
  <IsCallLogSyncActive>true</IsCallLogSyncActive>
  <IsLeadAssignee>true</IsLeadAssignee>
  <IsOnHoliday>true</IsOnHoliday>
  <LastCallLogSyncAt>15</LastCallLogSyncAt>
  <LastLogin>sample string 10</LastLogin>
  <Mobile>sample string 4</Mobile>
  <Name>sample string 3</Name>
  <Role>sample string 7</Role>
  <TeamId>1</TeamId>
  <TeamName>sample string 9</TeamName>
  <Username>sample string 6</Username>
</GetAllUserVm>