GET
api/v1/get-seller-address-by-id?id={id}&bpCode={bpCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | integer |
Required |
|
| bpCode | string |
Required |
Response Information
Description:
Return type: SellerAddress
Response Formats
application/json, text/json
{
"Id": 1,
"BPCode": "sample string 2",
"Address": "sample string 3",
"ZipCode": "sample string 4",
"City": "sample string 5",
"Country": "sample string 6",
"CountryName": "sample string 7",
"State": "sample string 8",
"StateName": "sample string 9",
"TaxCode": "sample string 10",
"AddressType": "sample string 11",
"isActive": true,
"isPrimary": true,
"IsLogicalDeleted": true
}
text/html
{"Id":1,"BPCode":"sample string 2","Address":"sample string 3","ZipCode":"sample string 4","City":"sample string 5","Country":"sample string 6","CountryName":"sample string 7","State":"sample string 8","StateName":"sample string 9","TaxCode":"sample string 10","AddressType":"sample string 11","isActive":true,"isPrimary":true,"IsLogicalDeleted":true}
application/xml, text/xml
<SellerAddress xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Seller"> <Address>sample string 3</Address> <AddressType>sample string 11</AddressType> <BPCode>sample string 2</BPCode> <City>sample string 5</City> <Country>sample string 6</Country> <CountryName>sample string 7</CountryName> <Id>1</Id> <IsLogicalDeleted>true</IsLogicalDeleted> <State>sample string 8</State> <StateName>sample string 9</StateName> <TaxCode>sample string 10</TaxCode> <ZipCode>sample string 4</ZipCode> <isActive>true</isActive> <isPrimary>true</isPrimary> </SellerAddress>
