POST Stats/ProductConfirmedAbandonments

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

GetProductAbandonmentResponse
NameDescriptionTypeAdditional information
DateFrom

date

None.

DateUntil

date

None.

ItemsCount

integer

None.

Items

Collection of ProductAbandonmentItem

None.

Response Formats

application/json, text/json

Sample:
{
  "DateFrom": "2025-12-06T05:42:06.5249037+01:00",
  "DateUntil": "2025-12-06T05:42:06.5249037+01:00",
  "ItemsCount": 3,
  "Items": [
    {
      "ID": 1,
      "Name": "sample string 2",
      "Reference": "sample string 3",
      "Quantity": {
        "Abandoned": 1.0,
        "NotAbandoned": 2.0,
        "AbandonedPercent": 3.0
      },
      "Amount": {
        "Abandoned": 1.0,
        "NotAbandoned": 2.0,
        "AbandonedPercent": 3.0
      }
    },
    {
      "ID": 1,
      "Name": "sample string 2",
      "Reference": "sample string 3",
      "Quantity": {
        "Abandoned": 1.0,
        "NotAbandoned": 2.0,
        "AbandonedPercent": 3.0
      },
      "Amount": {
        "Abandoned": 1.0,
        "NotAbandoned": 2.0,
        "AbandonedPercent": 3.0
      }
    }
  ]
}

application/xml, text/xml

Sample:
<GetProductAbandonmentResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Stats">
  <DateFrom>2025-12-06T05:42:06.5249037+01:00</DateFrom>
  <DateUntil>2025-12-06T05:42:06.5249037+01:00</DateUntil>
  <Items>
    <ProductAbandonmentItem>
      <Amount>
        <Abandoned>1</Abandoned>
        <AbandonedPercent>3</AbandonedPercent>
        <NotAbandoned>2</NotAbandoned>
      </Amount>
      <ID>1</ID>
      <Name>sample string 2</Name>
      <Quantity>
        <Abandoned>1</Abandoned>
        <AbandonedPercent>3</AbandonedPercent>
        <NotAbandoned>2</NotAbandoned>
      </Quantity>
      <Reference>sample string 3</Reference>
    </ProductAbandonmentItem>
    <ProductAbandonmentItem>
      <Amount>
        <Abandoned>1</Abandoned>
        <AbandonedPercent>3</AbandonedPercent>
        <NotAbandoned>2</NotAbandoned>
      </Amount>
      <ID>1</ID>
      <Name>sample string 2</Name>
      <Quantity>
        <Abandoned>1</Abandoned>
        <AbandonedPercent>3</AbandonedPercent>
        <NotAbandoned>2</NotAbandoned>
      </Quantity>
      <Reference>sample string 3</Reference>
    </ProductAbandonmentItem>
  </Items>
  <ItemsCount>3</ItemsCount>
</GetProductAbandonmentResponse>