PUT api/ShippingMethods

Updates an existing ShippingMethods entity

Request Information

URI Parameters

None.

Body Parameters

ShippingMethodsData object

ShippingMethodsData
NameDescriptionTypeAdditional information
ShippingMethodID

integer

None.

Title

string

None.

Price

decimal number

None.

AddedDate

date

None.

AddedBy

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ShippingMethodID": 1,
  "Title": "sample string 2",
  "Price": 3.0,
  "AddedDate": "2026-01-18T14:36:23.2045024-08:00",
  "AddedBy": "sample string 4"
}

text/xml

Sample:
<ShippingMethodsData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CodeBhagat.DAL">
  <AddedBy>sample string 4</AddedBy>
  <AddedDate>2026-01-18T14:36:23.2045024-08:00</AddedDate>
  <Price>3</Price>
  <ShippingMethodID>1</ShippingMethodID>
  <Title>sample string 2</Title>
</ShippingMethodsData>

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.