GET
api/v1/get-seller-info?clientId={clientId}
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
clientId | integer |
Required |
Response Information
Description:
Return type: Collection of SellerData
Response Formats
application/json, text/json
[ { "SellerInfo": "sample string 1", "AdminMemberId": 2 }, { "SellerInfo": "sample string 1", "AdminMemberId": 2 } ]
text/html
[{"SellerInfo":"sample string 1","AdminMemberId":2},{"SellerInfo":"sample string 1","AdminMemberId":2}]
application/xml, text/xml
<ArrayOfSellerData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Theme"> <SellerData> <AdminMemberId>2</AdminMemberId> <SellerInfo>sample string 1</SellerInfo> </SellerData> <SellerData> <AdminMemberId>2</AdminMemberId> <SellerInfo>sample string 1</SellerInfo> </SellerData> </ArrayOfSellerData>