GET api/Stores

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of Store
NameDescriptionTypeAdditional information
StoreId

integer

None.

Name

string

None.

Address

string

None.

MobileNumber

string

None.

StatusTypeId

integer

None.

CreatedDate

date

None.

UpdatedDate

date

None.

Username

string

None.

Password

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "StoreId": 1,
    "Name": "sample string 2",
    "Address": "sample string 3",
    "MobileNumber": "sample string 4",
    "StatusTypeId": 1,
    "CreatedDate": "2025-12-06T10:00:40.3719054+05:30",
    "UpdatedDate": "2025-12-06T10:00:40.3719054+05:30",
    "Username": "sample string 5",
    "Password": "sample string 6"
  },
  {
    "StoreId": 1,
    "Name": "sample string 2",
    "Address": "sample string 3",
    "MobileNumber": "sample string 4",
    "StatusTypeId": 1,
    "CreatedDate": "2025-12-06T10:00:40.3719054+05:30",
    "UpdatedDate": "2025-12-06T10:00:40.3719054+05:30",
    "Username": "sample string 5",
    "Password": "sample string 6"
  }
]

application/xml, text/xml

Sample:
<ArrayOfStore xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GNGroup.Models">
  <Store>
    <Address>sample string 3</Address>
    <CreatedDate>2025-12-06T10:00:40.3719054+05:30</CreatedDate>
    <MobileNumber>sample string 4</MobileNumber>
    <Name>sample string 2</Name>
    <Password>sample string 6</Password>
    <StatusTypeId>1</StatusTypeId>
    <StoreId>1</StoreId>
    <UpdatedDate>2025-12-06T10:00:40.3719054+05:30</UpdatedDate>
    <Username>sample string 5</Username>
  </Store>
  <Store>
    <Address>sample string 3</Address>
    <CreatedDate>2025-12-06T10:00:40.3719054+05:30</CreatedDate>
    <MobileNumber>sample string 4</MobileNumber>
    <Name>sample string 2</Name>
    <Password>sample string 6</Password>
    <StatusTypeId>1</StatusTypeId>
    <StoreId>1</StoreId>
    <UpdatedDate>2025-12-06T10:00:40.3719054+05:30</UpdatedDate>
    <Username>sample string 5</Username>
  </Store>
</ArrayOfStore>