Skip to main content
PUT
/
addresses
/
{sellerId}
/
default
/
{defaultAddressType}
Update address
curl --request PUT \
  --url https://api.quivo.co/addresses/{sellerId}/default/{defaultAddressType} \
  --header 'Content-Type: application/json' \
  --data '{
  "id": 123
}'
{
  "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.

defaultAddressType
enum<string>
required

The type of default address. Must be one of: SHIP_FROM, PICKUP, RETURN.

Available options:
SHIP_FROM,
PICKUP,
RETURN

Body

application/json

Complete resource data to update at /addresses/{sellerId}/default/{defaultAddressType}

Request payload containing the unique identifier of an address to set as the default address for a specific address type.

id
integer<int64>
required

The unique identifier for the address.

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.