Skip to main content
GET
/
addresses
/
{sellerId}
/
default
/
{defaultAddressType}
Get address
curl --request GET \
  --url https://api.quivo.co/addresses/{sellerId}/default/{defaultAddressType}
{
  "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

Response

Returns the requested address with full 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.