GET api/Receiver/Customer/GetList?id={id}¤tPage={currentPage}&rowPerPage={rowPerPage}&keyword={keyword}&optionId={optionId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | string |
Required |
|
| currentPage | integer |
Required |
|
| rowPerPage | byte |
Required |
|
| keyword | string |
Default value is |
|
| optionId | byte |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
Collection of ReceiverCustomerSelectModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| FullName | string |
None. |
|
| Phone | string |
None. |
|
| string |
None. |
||
| Field1 | string |
None. |
|
| Field2 | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": "fb783bd2-e97d-473f-bdb6-5947ccb66e2e",
"fullName": "sample string 2",
"phone": "sample string 3",
"email": "sample string 4",
"field1": "sample string 5",
"field2": "sample string 6"
},
{
"id": "fb783bd2-e97d-473f-bdb6-5947ccb66e2e",
"fullName": "sample string 2",
"phone": "sample string 3",
"email": "sample string 4",
"field1": "sample string 5",
"field2": "sample string 6"
}
]
application/xml, text/xml
Sample:
<ArrayOfReceiverCustomerSelectModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AgencyWebAPI.Models.Receiver">
<ReceiverCustomerSelectModel>
<Email>sample string 4</Email>
<Field1>sample string 5</Field1>
<Field2>sample string 6</Field2>
<FullName>sample string 2</FullName>
<Id>fb783bd2-e97d-473f-bdb6-5947ccb66e2e</Id>
<Phone>sample string 3</Phone>
</ReceiverCustomerSelectModel>
<ReceiverCustomerSelectModel>
<Email>sample string 4</Email>
<Field1>sample string 5</Field1>
<Field2>sample string 6</Field2>
<FullName>sample string 2</FullName>
<Id>fb783bd2-e97d-473f-bdb6-5947ccb66e2e</Id>
<Phone>sample string 3</Phone>
</ReceiverCustomerSelectModel>
</ArrayOfReceiverCustomerSelectModel>