Skip to main content
GET
/
orders
/
entry
/
{sellerId}
/
{warehouseId}
/
countries
List orders
curl --request GET \
  --url https://api.quivo.co/orders/entry/{sellerId}/{warehouseId}/countries
[
  {
    "countryIso2": "<string>",
    "countryIso3": "<string>",
    "countryName": "<string>",
    "exportDocumentsRequired": true,
    "shipToZip": "OPTIONAL",
    "shipToState": "OPTIONAL"
  }
]

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.

warehouseId
integer<int64>
required

The unique identifier for the warehouse location where items are stored and orders are fulfilled.

Response

Returns an array of OrderEntryCountry matching the request criteria.

countryIso2
string

Country code or name

countryIso3
string

Country code or name

countryName
string

The name of the country

exportDocumentsRequired
boolean

Indicates whether export documents is required

shipToZip
enum<string>

ZIP or postal code

Available options:
OPTIONAL,
REQUIRED,
HIDDEN
shipToState
enum<string>

State or province

Available options:
OPTIONAL,
REQUIRED,
HIDDEN