Skip to main content
PUT
/
addresses
/
{sellerId}
/
{addressId}
Update address
curl --request PUT \
  --url https://api.quivo.co/addresses/{sellerId}/{addressId} \
  --header 'Content-Type: application/json' \
  --data '"<string>"'
{
  "defaultFor": [
    "SHIP_FROM"
  ],
  "name": "<string>",
  "company": "<string>",
  "address1": "<string>",
  "address2": "<string>",
  "zip": "<string>",
  "city": "<string>",
  "state": "<string>",
  "country": "<string>",
  "phone": "<string>",
  "email": "<string>",
  "id": 123
}

Path Parameters

sellerId
integer<int64>
required

The unique identifier for the seller account. This ID is used to scope operations to a specific seller's data and resources.

addressId
integer<int64>
required

The unique identifier for an address in the seller's address book.

Body

application/json

Complete resource data to update at /addresses/{sellerId}/{addressId}

The body is of type string.

Response

Returns the updated address with current address details.

Complete address information from the address book. Contains full address details including street, city, country, postal code, and optional identifiers.

defaultFor
enum<string>[]

Array of default for

Available options:
SHIP_FROM,
PICKUP,
RETURN
name
string

The name of the item

company
string

Company name

address1
string

Address information

address2
string

Address information

zip
string

ZIP or postal code

city
string

City name

state
string

State or province

country
string

Country code or name

phone
string

Phone number

email
string

Email address

id
integer<int64>

The unique identifier for the address.