GET api/GetRepresentatives
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
Collection of Representative| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| FirstName | string |
None. |
|
| LastName | string |
None. |
|
| FfName | string |
None. |
|
| FfId | integer |
None. |
|
| StrId | integer |
None. |
|
| StrCode | string |
None. |
|
| AdName | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"Id": 1,
"FirstName": "sample string 2",
"LastName": "sample string 3",
"FfName": "sample string 4",
"FfId": 5,
"StrId": 6,
"StrCode": "sample string 7",
"AdName": "sample string 8"
},
{
"Id": 1,
"FirstName": "sample string 2",
"LastName": "sample string 3",
"FfName": "sample string 4",
"FfId": 5,
"StrId": 6,
"StrCode": "sample string 7",
"AdName": "sample string 8"
}
]
application/xml, text/xml
Sample:
<ArrayOfRepresentative xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Models">
<Representative>
<AdName>sample string 8</AdName>
<FfId>5</FfId>
<FfName>sample string 4</FfName>
<FirstName>sample string 2</FirstName>
<Id>1</Id>
<LastName>sample string 3</LastName>
<StrCode>sample string 7</StrCode>
<StrId>6</StrId>
</Representative>
<Representative>
<AdName>sample string 8</AdName>
<FfId>5</FfId>
<FfName>sample string 4</FfName>
<FirstName>sample string 2</FirstName>
<Id>1</Id>
<LastName>sample string 3</LastName>
<StrCode>sample string 7</StrCode>
<StrId>6</StrId>
</Representative>
</ArrayOfRepresentative>