GET
api/v1/get-vendor-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: VendorAddress
Response Formats
application/json, text/json
{
"Id": 1,
"BPCode": "sample string 2",
"Address": "sample string 3",
"ZipCode": "sample string 4",
"City": "sample string 5",
"CountryId": 6,
"Country": "sample string 7",
"CountryName": "sample string 8",
"StateId": 9,
"State": "sample string 10",
"StateName": "sample string 11",
"TaxCode": "sample string 12",
"AddressType": "sample string 13",
"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","CountryId":6,"Country":"sample string 7","CountryName":"sample string 8","StateId":9,"State":"sample string 10","StateName":"sample string 11","TaxCode":"sample string 12","AddressType":"sample string 13","isActive":true,"isPrimary":true,"IsLogicalDeleted":true}
application/xml, text/xml
<VendorAddress xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.Vendor"> <Address>sample string 3</Address> <AddressType>sample string 13</AddressType> <BPCode>sample string 2</BPCode> <City>sample string 5</City> <Country>sample string 7</Country> <CountryId>6</CountryId> <CountryName>sample string 8</CountryName> <Id>1</Id> <IsLogicalDeleted>true</IsLogicalDeleted> <State>sample string 10</State> <StateId>9</StateId> <StateName>sample string 11</StateName> <TaxCode>sample string 12</TaxCode> <ZipCode>sample string 4</ZipCode> <isActive>true</isActive> <isPrimary>true</isPrimary> </VendorAddress>
