POST api/v1/update-seller-address

Request Information

Body Parameters

SellerAddress
NameDescriptionTypeAdditional information
Id

integer

None.

BPCode

string

None.

Address

string

None.

ZipCode

string

None.

City

string

None.

Country

string

None.

CountryName

string

None.

State

string

None.

StateName

string

None.

TaxCode

string

None.

AddressType

string

None.

isActive

boolean

None.

isPrimary

boolean

None.

IsLogicalDeleted

boolean

None.

Request 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>

Sample not available.

Response Information

Description:

Return type: boolean

Response Formats
true
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>