POST Common/ShippingSetting/Save

Request Information

URI Parameters

None.

Body Parameters

ShippingSettingViewModel
NameDescriptionTypeAdditional information
Id

integer

None.

StoreId

integer

None.

PickUpInStore

boolean

None.

FreeshippingOver

decimal number

None.

EstimateShippingEnabled

boolean

None.

StateId

integer

Required

StateName

string

None.

CountryId

integer

None.

CountryName

string

None.

County

string

Max length: 50

City

string

Max length: 50

Address1

string

Max length: 100

Zip

string

Required

Max length: 50

ModifiedBy

string

None.

ModifiedDate

date

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "StoreId": 1,
  "PickUpInStore": true,
  "FreeshippingOver": 3.0,
  "EstimateShippingEnabled": true,
  "StateId": 5,
  "StateName": "sample string 6",
  "CountryId": 7,
  "CountryName": "sample string 8",
  "County": "sample string 9",
  "City": "sample string 10",
  "Address1": "sample string 11",
  "Zip": "sample string 12",
  "ModifiedBy": "sample string 13",
  "ModifiedDate": "2025-04-26T16:16:34.9973737+01:00"
}

application/xml, text/xml

Sample:
<ShippingSettingViewModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ECommerce.Service.Common.ViewModel">
  <Address1>sample string 11</Address1>
  <City>sample string 10</City>
  <CountryId>7</CountryId>
  <CountryName>sample string 8</CountryName>
  <County>sample string 9</County>
  <EstimateShippingEnabled>true</EstimateShippingEnabled>
  <FreeshippingOver>3</FreeshippingOver>
  <Id>1</Id>
  <ModifiedBy>sample string 13</ModifiedBy>
  <ModifiedDate>2025-04-26T16:16:34.9973737+01:00</ModifiedDate>
  <PickUpInStore>true</PickUpInStore>
  <StateId>5</StateId>
  <StateName>sample string 6</StateName>
  <StoreId>1</StoreId>
  <Zip>sample string 12</Zip>
</ShippingSettingViewModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

HttpResponseMessage
NameDescriptionTypeAdditional information
Version

Version

None.

Content

HttpContent

None.

StatusCode

HttpStatusCode

None.

ReasonPhrase

string

None.

Headers

Collection of Object

None.

RequestMessage

HttpRequestMessage

None.

IsSuccessStatusCode

boolean

None.