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

Requires Authorization!

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 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": "2021-12-02T20:19:39.2791393+01:00",
    "LastOrderSync": "2021-12-02T20:19:39.2791393+01:00"
  },
  {
    "Id": 1,
    "Name": "sample string 2",
    "Active": true,
    "LastMailCheck": "2021-12-02T20:19:39.2791393+01:00",
    "LastOrderSync": "2021-12-02T20:19:39.2791393+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>2021-12-02T20:19:39.2791393+01:00</LastMailCheck>
    <LastOrderSync>2021-12-02T20:19:39.2791393+01:00</LastOrderSync>
  </ShopStatusInfo>
  <ShopStatusInfo>
    <Id>1</Id>
    <Name>sample string 2</Name>
    <Active>true</Active>
    <LastMailCheck>2021-12-02T20:19:39.2791393+01:00</LastMailCheck>
    <LastOrderSync>2021-12-02T20:19:39.2791393+01:00</LastOrderSync>
  </ShopStatusInfo>
</ArrayOfShopStatusInfo>