GET api/v1/get-seller-address-by-id?id={id}&bpCode={bpCode}

Request Information

URI Parameters
NameDescriptionTypeAdditional information
id

integer

Required

bpCode

string

Required

Response Information

Description:

Return type: SellerAddress

Response Formats
{
  "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
}
{"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}
<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>