GET api/ShipMethods/{id}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
ShipMethodsData| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | globally unique identifier |
None. |
|
| Identifier | string |
None. |
|
| Name | string |
None. |
|
| Updated | date |
None. |
|
| ShipCode | integer |
None. |
|
| IsDeleted | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"Id": "4f865ad6-b4a9-4a2b-a82d-13c4d21a224e",
"Identifier": "sample string 1",
"Name": "sample string 2",
"Updated": "2025-12-15T23:39:20.6885124-05:00",
"ShipCode": 1,
"IsDeleted": 1
}
application/xml, text/xml
Sample:
<ShipMethodsData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IosWebApi.Models"> <Id>4f865ad6-b4a9-4a2b-a82d-13c4d21a224e</Id> <Identifier>sample string 1</Identifier> <IsDeleted>1</IsDeleted> <Name>sample string 2</Name> <ShipCode>1</ShipCode> <Updated>2025-12-15T23:39:20.6885124-05:00</Updated> </ShipMethodsData>