POST Stores/StoreLanguages

Request Information

URI Parameters

None.

Body Parameters

StoreRequest
NameDescriptionTypeAdditional information
ID

integer

None.

Lang

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ID": 1,
  "Lang": "sample string 2"
}

application/xml, text/xml

Sample:
<StoreRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.Common.Store">
  <ID>1</ID>
  <Lang>sample string 2</Lang>
</StoreRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of Language
NameDescriptionTypeAdditional information
ID

integer

None.

Name

string

Required

Code

string

Required

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "Name": "sample string 2",
    "Code": "sample string 3"
  },
  {
    "ID": 1,
    "Name": "sample string 2",
    "Code": "sample string 3"
  }
]

application/xml, text/xml

Sample:
<ArrayOfLanguage xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ShopworldApi.Admin.Models.View.Localization">
  <Language>
    <Code>sample string 3</Code>
    <ID>1</ID>
    <Name>sample string 2</Name>
  </Language>
  <Language>
    <Code>sample string 3</Code>
    <ID>1</ID>
    <Name>sample string 2</Name>
  </Language>
</ArrayOfLanguage>