GET api/GetCustomersOrders?filter={filter}&value={value}&from={from}&qty={qty}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| filter | integer |
Default value is 0 |
|
| value | string |
Default value is |
|
| from | integer |
Default value is 0 |
|
| qty | integer |
Default value is 1000 |
Body Parameters
None.
Response Information
Resource Description
Collection of customerOrder| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
None. |
|
| id_type | string |
None. |
|
| identifier | string |
None. |
|
| fullname | string |
None. |
|
| string |
None. |
||
| phone | string |
None. |
|
| city | string |
None. |
|
| address | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"id": 1,
"id_type": "sample string 2",
"identifier": "sample string 3",
"fullname": "sample string 4",
"email": "sample string 5",
"phone": "sample string 6",
"city": "sample string 7",
"address": "sample string 8"
},
{
"id": 1,
"id_type": "sample string 2",
"identifier": "sample string 3",
"fullname": "sample string 4",
"email": "sample string 5",
"phone": "sample string 6",
"city": "sample string 7",
"address": "sample string 8"
}
]
application/xml, text/xml
Sample:
<ArrayOfcustomerOrder xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API_Pepezone.Models">
<customerOrder>
<address>sample string 8</address>
<city>sample string 7</city>
<email>sample string 5</email>
<fullname>sample string 4</fullname>
<id>1</id>
<id_type>sample string 2</id_type>
<identifier>sample string 3</identifier>
<phone>sample string 6</phone>
</customerOrder>
<customerOrder>
<address>sample string 8</address>
<city>sample string 7</city>
<email>sample string 5</email>
<fullname>sample string 4</fullname>
<id>1</id>
<id_type>sample string 2</id_type>
<identifier>sample string 3</identifier>
<phone>sample string 6</phone>
</customerOrder>
</ArrayOfcustomerOrder>