GET api/v1/Stores?withoutJsonString={withoutJsonString}

Get all Stores for an account.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
withoutJsonString

Optional! If set to true - the returned stores will have NULL in JsonString

boolean

Default value is False

Body Parameters

None.

Response Information

Resource Description

An array of all stores for an account

Collection of ReadStoreDto
NameDescriptionTypeAdditional information
Id

Id of Store

integer

Required

Number

Unique number of the store

string

Required

String length: inclusive between 0 and 25

LastModified

Date-time of when store was last modified

date

None.

Name

Meaningful name of the store

string

String length: inclusive between 0 and 100

Phone

Phone of the store

string

String length: inclusive between 0 and 20

Address

Address of the store

string

String length: inclusive between 0 and 100

ZipCode

Zip code of the store

string

String length: inclusive between 0 and 10

City

City of the store

string

String length: inclusive between 0 and 50

Email

Email of a store

string

String length: inclusive between 0 and 250

JsonString

Json string for additional data

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Id": 1,
    "Number": "sample string 2",
    "LastModified": "2024-04-26T16:30:40.9328167+00:00",
    "Name": "sample string 4",
    "Phone": "sample string 5",
    "Address": "sample string 6",
    "ZipCode": "sample string 7",
    "City": "sample string 8",
    "Email": "sample string 9",
    "JsonString": "sample string 10"
  },
  {
    "Id": 1,
    "Number": "sample string 2",
    "LastModified": "2024-04-26T16:30:40.9328167+00:00",
    "Name": "sample string 4",
    "Phone": "sample string 5",
    "Address": "sample string 6",
    "ZipCode": "sample string 7",
    "City": "sample string 8",
    "Email": "sample string 9",
    "JsonString": "sample string 10"
  }
]