List Locations
curl --request GET \
--url https://api.launchmystore.io/api/v1/locations \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"locations": [
{
"id": "loc_main",
"name": "Main Warehouse",
"address1": "123 Commerce St",
"address2": "Suite 100",
"city": "Los Angeles",
"province": "California",
"province_code": "CA",
"country": "United States",
"country_code": "US",
"zip": "90001",
"phone": "+1-555-123-4567",
"is_primary": true,
"is_active": true,
"fulfills_online_orders": true,
"created_at": "2024-01-01T00:00:00Z"
},
{
"id": "loc_east",
"name": "East Coast Fulfillment",
"address1": "456 Distribution Ave",
"city": "Newark",
"province": "New Jersey",
"province_code": "NJ",
"country": "United States",
"country_code": "US",
"zip": "07102",
"is_primary": false,
"is_active": true,
"fulfills_online_orders": true,
"created_at": "2024-01-15T10:00:00Z"
}
]
}
}
Locations
List Locations
Get all inventory locations
GET
/
api
/
v1
/
locations
List Locations
curl --request GET \
--url https://api.launchmystore.io/api/v1/locations \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"locations": [
{
"id": "loc_main",
"name": "Main Warehouse",
"address1": "123 Commerce St",
"address2": "Suite 100",
"city": "Los Angeles",
"province": "California",
"province_code": "CA",
"country": "United States",
"country_code": "US",
"zip": "90001",
"phone": "+1-555-123-4567",
"is_primary": true,
"is_active": true,
"fulfills_online_orders": true,
"created_at": "2024-01-01T00:00:00Z"
},
{
"id": "loc_east",
"name": "East Coast Fulfillment",
"address1": "456 Distribution Ave",
"city": "Newark",
"province": "New Jersey",
"province_code": "NJ",
"country": "United States",
"country_code": "US",
"zip": "07102",
"is_primary": false,
"is_active": true,
"fulfills_online_orders": true,
"created_at": "2024-01-15T10:00:00Z"
}
]
}
}
Documentation Index
Fetch the complete documentation index at: https://docs.launchmystore.io/llms.txt
Use this file to discover all available pages before exploring further.
Response
{
"success": true,
"data": {
"locations": [
{
"id": "loc_main",
"name": "Main Warehouse",
"address1": "123 Commerce St",
"address2": "Suite 100",
"city": "Los Angeles",
"province": "California",
"province_code": "CA",
"country": "United States",
"country_code": "US",
"zip": "90001",
"phone": "+1-555-123-4567",
"is_primary": true,
"is_active": true,
"fulfills_online_orders": true,
"created_at": "2024-01-01T00:00:00Z"
},
{
"id": "loc_east",
"name": "East Coast Fulfillment",
"address1": "456 Distribution Ave",
"city": "Newark",
"province": "New Jersey",
"province_code": "NJ",
"country": "United States",
"country_code": "US",
"zip": "07102",
"is_primary": false,
"is_active": true,
"fulfills_online_orders": true,
"created_at": "2024-01-15T10:00:00Z"
}
]
}
}
⌘I