POST Stores/AddStore

Retrieves an existing Store.

Request Information

URI Parameters

None.

Body Parameters

AddStoreBinding
NameDescriptionTypeAdditional information
MerchantID

integer

None.

Disabled

date

None.

Name

string

Required

VatIdentifier

string

Required

String length: inclusive between 0 and 20

Request Formats

application/json, text/json

Sample:
{
  "MerchantID": 1,
  "Disabled": "2025-12-06T05:40:40.467114+01:00",
  "Name": "sample string 2",
  "VatIdentifier": "sample string 3"
}

application/xml, text/xml

Sample:
<AddStoreBinding xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Binding.Store">
  <Disabled>2025-12-06T05:40:40.467114+01:00</Disabled>
  <MerchantID>1</MerchantID>
  <Name>sample string 2</Name>
  <VatIdentifier>sample string 3</VatIdentifier>
</AddStoreBinding>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

integer

Response Formats

application/json, text/json

Sample:
1

application/xml, text/xml

Sample:
<int xmlns="http://schemas.microsoft.com/2003/10/Serialization/">1</int>