GET
api/v1/get-seller-shipping-options?sellerid={sellerid}&clientid={clientid}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
sellerid | integer |
Required |
|
clientid | integer |
Required |
Response Information
Description:
Return type: SellerShippingOptionsResponse
Response Formats
application/json, text/json
{ "ShippingOption": [ { "LogisticsId": 1, "ShippingService": "sample string 2", "UserName": "sample string 3", "Password": "sample string 4", "URL": "sample string 5", "IsActive": true }, { "LogisticsId": 1, "ShippingService": "sample string 2", "UserName": "sample string 3", "Password": "sample string 4", "URL": "sample string 5", "IsActive": true } ], "LogisticsList": [ { "LogisticsId": 1, "LogisticsName": "sample string 2" }, { "LogisticsId": 1, "LogisticsName": "sample string 2" } ] }
text/html
{"ShippingOption":[{"LogisticsId":1,"ShippingService":"sample string 2","UserName":"sample string 3","Password":"sample string 4","URL":"sample string 5","IsActive":true},{"LogisticsId":1,"ShippingService":"sample string 2","UserName":"sample string 3","Password":"sample string 4","URL":"sample string 5","IsActive":true}],"LogisticsList":[{"LogisticsId":1,"LogisticsName":"sample string 2"},{"LogisticsId":1,"LogisticsName":"sample string 2"}]}
application/xml, text/xml
<SellerShippingOptionsResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Seller"> <LogisticsList> <LogisticsOption> <LogisticsId>1</LogisticsId> <LogisticsName>sample string 2</LogisticsName> </LogisticsOption> <LogisticsOption> <LogisticsId>1</LogisticsId> <LogisticsName>sample string 2</LogisticsName> </LogisticsOption> </LogisticsList> <ShippingOption> <SellerShippingMappedDetail> <IsActive>true</IsActive> <LogisticsId>1</LogisticsId> <Password>sample string 4</Password> <ShippingService>sample string 2</ShippingService> <URL>sample string 5</URL> <UserName>sample string 3</UserName> </SellerShippingMappedDetail> <SellerShippingMappedDetail> <IsActive>true</IsActive> <LogisticsId>1</LogisticsId> <Password>sample string 4</Password> <ShippingService>sample string 2</ShippingService> <URL>sample string 5</URL> <UserName>sample string 3</UserName> </SellerShippingMappedDetail> </ShippingOption> </SellerShippingOptionsResponse>