GET
api/v1/Get_LogisticFields?logisticsId={logisticsId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| logisticsId | integer |
Required |
Response Information
Description:
Return type: Collection of ShippingMethodField
Response Formats
application/json, text/json
[
{
"Id": 1,
"ShippingMethodId": 2,
"FieldName": "sample string 3",
"Labels": "sample string 4",
"FieldType": "sample string 5",
"MaxLength": 6,
"IsRequired": true,
"ValidationRegex": "sample string 8",
"Value": "sample string 9",
"ValidationMessage": "sample string 10",
"CommonFieldName": "sample string 11"
},
{
"Id": 1,
"ShippingMethodId": 2,
"FieldName": "sample string 3",
"Labels": "sample string 4",
"FieldType": "sample string 5",
"MaxLength": 6,
"IsRequired": true,
"ValidationRegex": "sample string 8",
"Value": "sample string 9",
"ValidationMessage": "sample string 10",
"CommonFieldName": "sample string 11"
}
]
text/html
[{"Id":1,"ShippingMethodId":2,"FieldName":"sample string 3","Labels":"sample string 4","FieldType":"sample string 5","MaxLength":6,"IsRequired":true,"ValidationRegex":"sample string 8","Value":"sample string 9","ValidationMessage":"sample string 10","CommonFieldName":"sample string 11"},{"Id":1,"ShippingMethodId":2,"FieldName":"sample string 3","Labels":"sample string 4","FieldType":"sample string 5","MaxLength":6,"IsRequired":true,"ValidationRegex":"sample string 8","Value":"sample string 9","ValidationMessage":"sample string 10","CommonFieldName":"sample string 11"}]
application/xml, text/xml
<ArrayOfShippingMethodField xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Logistic">
<ShippingMethodField>
<CommonFieldName>sample string 11</CommonFieldName>
<FieldName>sample string 3</FieldName>
<FieldType>sample string 5</FieldType>
<Id>1</Id>
<IsRequired>true</IsRequired>
<Labels>sample string 4</Labels>
<MaxLength>6</MaxLength>
<ShippingMethodId>2</ShippingMethodId>
<ValidationMessage>sample string 10</ValidationMessage>
<ValidationRegex>sample string 8</ValidationRegex>
<Value>sample string 9</Value>
</ShippingMethodField>
<ShippingMethodField>
<CommonFieldName>sample string 11</CommonFieldName>
<FieldName>sample string 3</FieldName>
<FieldType>sample string 5</FieldType>
<Id>1</Id>
<IsRequired>true</IsRequired>
<Labels>sample string 4</Labels>
<MaxLength>6</MaxLength>
<ShippingMethodId>2</ShippingMethodId>
<ValidationMessage>sample string 10</ValidationMessage>
<ValidationRegex>sample string 8</ValidationRegex>
<Value>sample string 9</Value>
</ShippingMethodField>
</ArrayOfShippingMethodField>
