GET api/ViewTeamLeaders

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of UsersView
NameDescriptionTypeAdditional information
Id

integer

None.

Name

string

None.

Address

string

None.

Email

string

None.

Mobile

string

None.

Password

string

None.

TypeId

integer

None.

Type

string

None.

USerPriority

integer

None.

TeamId

integer

None.

Team

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "Address": "sample string 3",
    "Email": "sample string 4",
    "Mobile": "sample string 5",
    "Password": "sample string 6",
    "TypeId": 1,
    "Type": "sample string 7",
    "USerPriority": 8,
    "TeamId": 1,
    "Team": "sample string 9"
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "Address": "sample string 3",
    "Email": "sample string 4",
    "Mobile": "sample string 5",
    "Password": "sample string 6",
    "TypeId": 1,
    "Type": "sample string 7",
    "USerPriority": 8,
    "TeamId": 1,
    "Team": "sample string 9"
  }
]

application/xml, text/xml

Sample:
<ArrayOfUsersView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/api.mcapp.Models">
  <UsersView>
    <Address>sample string 3</Address>
    <Email>sample string 4</Email>
    <Id>1</Id>
    <Mobile>sample string 5</Mobile>
    <Name>sample string 2</Name>
    <Password>sample string 6</Password>
    <Team>sample string 9</Team>
    <TeamId>1</TeamId>
    <Type>sample string 7</Type>
    <TypeId>1</TypeId>
    <USerPriority>8</USerPriority>
  </UsersView>
  <UsersView>
    <Address>sample string 3</Address>
    <Email>sample string 4</Email>
    <Id>1</Id>
    <Mobile>sample string 5</Mobile>
    <Name>sample string 2</Name>
    <Password>sample string 6</Password>
    <Team>sample string 9</Team>
    <TeamId>1</TeamId>
    <Type>sample string 7</Type>
    <TypeId>1</TypeId>
    <USerPriority>8</USerPriority>
  </UsersView>
</ArrayOfUsersView>