GET v1/Shops/ShopStatus

Get a list with all available Shops for the logged in user. The status info contains info about last mail/order synchronization.

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

A list of ShopStatusInfo objects.

Collection of ShopStatusInfo
NameDescriptionTypeAdditional information
Id

Gets or sets the identifier.

integer

None.

Name

Gets or sets the name.

string

None.

Active

Gets or sets a value indicating whether this <see cref="T:ShopCtrl.API.Models.ShopStatusInfo" /> is active.

boolean

None.

LastMailCheck

Gets or sets the date of last mail check.

date

None.

LastOrderSync

Gets or sets the date of last order synchronization.

date

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Name": "sample string 2",
    "Active": true,
    "LastMailCheck": "2026-01-11T16:13:34.2994193+01:00",
    "LastOrderSync": "2026-01-11T16:13:34.2994193+01:00"
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "Active": true,
    "LastMailCheck": "2026-01-11T16:13:34.2994193+01:00",
    "LastOrderSync": "2026-01-11T16:13:34.2994193+01:00"
  }
]

application/xml, text/xml

Sample:
<ArrayOfShopStatusInfo xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ShopStatusInfo>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <Active>true</Active>
    <LastMailCheck>2026-01-11T16:13:34.2994193+01:00</LastMailCheck>
    <LastOrderSync>2026-01-11T16:13:34.2994193+01:00</LastOrderSync>
  </ShopStatusInfo>
  <ShopStatusInfo>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <Active>true</Active>
    <LastMailCheck>2026-01-11T16:13:34.2994193+01:00</LastMailCheck>
    <LastOrderSync>2026-01-11T16:13:34.2994193+01:00</LastOrderSync>
  </ShopStatusInfo>
</ArrayOfShopStatusInfo>