Skip to main content
POST
/
addresses
/
{sellerId}
Create address
curl --request POST \
  --url https://api.quivo.co/addresses/{sellerId} \
  --header 'Content-Type: application/json' \
  --data '
{
  "defaultFor": [
    "SHIP_FROM"
  ],
  "name": "<string>",
  "company": "<string>",
  "address1": "<string>",
  "address2": "<string>",
  "zip": "<string>",
  "city": "<string>",
  "state": "<string>",
  "country": "<string>",
  "phone": "<string>",
  "email": "<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.

Body

application/json

Data to create a new resource at /addresses/{sellerId}

Request payload for creating a new address in the seller's address book. Contains complete address information including street, city, country, 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

Response

Returns the newly created address with assigned identifier and full 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.