POST Customers/CustomersQueries

Get queries from all customers

Request Information

URI Parameters

None.

Body Parameters

GetCustomersQueriesRequest
NameDescriptionTypeAdditional information
Filter

Filter

None.

Range

AdminFilterRange

None.

Lang

string

None.

StoreID

integer

None.

Request Formats

application/json

Sample:

Sample not available.

text/json

Sample:

Sample not available.

application/xml

Sample:

Sample not available.

text/xml

Sample:

Sample not available.

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

CustomerQueryView
NameDescriptionTypeAdditional information
TotalCount

integer

None.

CustomersQueries

Collection of CustomerQuery

None.

Response Formats

application/json, text/json

Sample:
{
  "TotalCount": 1,
  "CustomersQueries": [
    {
      "ID": 1,
      "CustomerID": "sample string 2",
      "StoreID": 3,
      "Created": "2025-12-06T05:42:37.6324034+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:42:37.6324034+01:00",
      "Email": "sample string 5",
      "Name": "sample string 6",
      "Subject": "sample string 7",
      "Message": "sample string 8"
    }
  ]
}

application/xml, text/xml

Sample:
<CustomerQueryView xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Customer">
  <CustomersQueries>
    <CustomerQuery>
      <Created>2025-12-06T05:42:37.6324034+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:42:37.6324034+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>
  </CustomersQueries>
  <TotalCount>1</TotalCount>
</CustomerQueryView>