POST Stats/GhostCustomers

Get which Customers, create longer than a month ago, have never placed an Order. DateFrom/DateUntil parameters are ignored.

Request Information

URI Parameters

None.

Body Parameters

GetStatsRequest
NameDescriptionTypeAdditional information
DateFrom

date

None.

DateUntil

date

None.

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

GetGhostCustomersResponse
NameDescriptionTypeAdditional information
ActiveCustomersCount

integer

None.

GhostCustomersPercent

decimal number

None.

GhostCustomersCount

integer

None.

GhostCustomers

Collection of GhostCustomer

None.

Response Formats

application/json, text/json

Sample:
{
  "ActiveCustomersCount": 1,
  "GhostCustomersPercent": 2.0,
  "GhostCustomersCount": 3,
  "GhostCustomers": [
    {
      "CustomerID": "sample string 1",
      "FullName": "sample string 2",
      "Email": "sample string 3",
      "Gender": "sample string 4",
      "PostalCode": "sample string 5",
      "CustomerTypeID": 6,
      "TariffID": 7,
      "RegisterDate": "2025-12-06T09:18:04.7506387+01:00",
      "AccessFailedCount": 9
    },
    {
      "CustomerID": "sample string 1",
      "FullName": "sample string 2",
      "Email": "sample string 3",
      "Gender": "sample string 4",
      "PostalCode": "sample string 5",
      "CustomerTypeID": 6,
      "TariffID": 7,
      "RegisterDate": "2025-12-06T09:18:04.7506387+01:00",
      "AccessFailedCount": 9
    }
  ]
}

application/xml, text/xml

Sample:
<GetGhostCustomersResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Stats">
  <ActiveCustomersCount>1</ActiveCustomersCount>
  <GhostCustomers>
    <GhostCustomer>
      <AccessFailedCount>9</AccessFailedCount>
      <CustomerID>sample string 1</CustomerID>
      <CustomerTypeID>6</CustomerTypeID>
      <Email>sample string 3</Email>
      <FullName>sample string 2</FullName>
      <Gender>sample string 4</Gender>
      <PostalCode>sample string 5</PostalCode>
      <RegisterDate>2025-12-06T09:18:04.7506387+01:00</RegisterDate>
      <TariffID>7</TariffID>
    </GhostCustomer>
    <GhostCustomer>
      <AccessFailedCount>9</AccessFailedCount>
      <CustomerID>sample string 1</CustomerID>
      <CustomerTypeID>6</CustomerTypeID>
      <Email>sample string 3</Email>
      <FullName>sample string 2</FullName>
      <Gender>sample string 4</Gender>
      <PostalCode>sample string 5</PostalCode>
      <RegisterDate>2025-12-06T09:18:04.7506387+01:00</RegisterDate>
      <TariffID>7</TariffID>
    </GhostCustomer>
  </GhostCustomers>
  <GhostCustomersCount>3</GhostCustomersCount>
  <GhostCustomersPercent>2</GhostCustomersPercent>
</GetGhostCustomersResponse>