Warehouses

The Warehouse resource

Property
Type
Description

city

String (read-only)

City where the warehouse is located

country

String (read-only)

Country 2-letter ISO 3166-1 code where the warehouse is located

id

Integer (read-only)

Hive unique ID

name

String (read-only)

Name of the warehouse

List all warehouses

Lists all warehouses

GET https://app.hive.app/merchant_api/v1/warehouses

Returns all merchant's warehouses.

{
    "data": [
        {
            "id": 1,
            "name": "Office",
            "country": "DE",
            "city": "Berlin"
        },
        {
            "id": 71,
            "name": "Ms. Dale Wyman",
            "country": "VI",
            "city": "Rippintown"
        },
        {
            "id": 72,
            "name": "Ilana Graham",
            "country": "ML",
            "city": "Armstrongshire"
        }
    ]
}

Last updated