POST Customers/CustomerQueries
Get queries from one customer
Request Information
URI Parameters
None.
Body Parameters
CustomerRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | string |
Required String length: inclusive between 0 and 128 |
|
| Lang | string |
None. |
|
| StoreID | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"ID": "sample string 1",
"Lang": "sample string 2",
"StoreID": 3
}
application/xml, text/xml
Sample:
<CustomerRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Customer"> <Lang xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">sample string 2</Lang> <StoreID xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Base">3</StoreID> <ID>sample string 1</ID> </CustomerRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
Collection of CustomerQuery| Name | Description | Type | Additional information |
|---|---|---|---|
| ID | integer |
None. |
|
| CustomerID | string |
None. |
|
| StoreID | integer |
None. |
|
| Created | date |
None. |
|
| string |
None. |
||
| Name | string |
None. |
|
| Subject | string |
None. |
|
| Message | string |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"CustomerID": "sample string 2",
"StoreID": 3,
"Created": "2025-12-06T05:40:37.1968784+01:00",
"Email": "sample string 5",
"Name": "sample string 6",
"Subject": "sample string 7",
"Message": "sample string 8"
},
{
"ID": 1,
"CustomerID": "sample string 2",
"StoreID": 3,
"Created": "2025-12-06T05:40:37.1968784+01:00",
"Email": "sample string 5",
"Name": "sample string 6",
"Subject": "sample string 7",
"Message": "sample string 8"
}
]
application/xml, text/xml
Sample:
<ArrayOfCustomerQuery xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Customer">
<CustomerQuery>
<Created>2025-12-06T05:40:37.1968784+01:00</Created>
<CustomerID>sample string 2</CustomerID>
<Email>sample string 5</Email>
<ID>1</ID>
<Message>sample string 8</Message>
<Name>sample string 6</Name>
<StoreID>3</StoreID>
<Subject>sample string 7</Subject>
</CustomerQuery>
<CustomerQuery>
<Created>2025-12-06T05:40:37.1968784+01:00</Created>
<CustomerID>sample string 2</CustomerID>
<Email>sample string 5</Email>
<ID>1</ID>
<Message>sample string 8</Message>
<Name>sample string 6</Name>
<StoreID>3</StoreID>
<Subject>sample string 7</Subject>
</CustomerQuery>
</ArrayOfCustomerQuery>