GET api/Stores/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

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-06T09:56:47.2078694+05:30",
  "UpdatedDate": "2025-12-06T09:56:47.2078694+05:30",
  "Username": "sample string 5",
  "Password": "sample string 6"
}

application/xml, text/xml

Sample:
<Store xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GNGroup.Models">
  <Address>sample string 3</Address>
  <CreatedDate>2025-12-06T09:56:47.2078694+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-06T09:56:47.2078694+05:30</UpdatedDate>
  <Username>sample string 5</Username>
</Store>