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

Response

Returns an array of saved addresses for the specified seller, including address details such as street, city, country, and any associated 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.