GET api/ShippingMethods

Returns list of all ShippingMethods Data

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ShippingMethodsData
NameDescriptionTypeAdditional information
ShippingMethodID

integer

None.

Title

string

None.

Price

decimal number

None.

AddedDate

date

None.

AddedBy

string

None.

Response Formats

application/json, text/json

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

text/xml

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