Requires read_location access scope.
For more info, refer to:
GET https://{handle}.myshopline.com/admin/openapi/v20260301/locations/list.json
handle : The store's unique identifier, which is the prefix of the store's domain name. For example, if a store's domain name is open001.myshopline.com , the store handle is open001 .
Get all locations for a store.
Request Headers
  • Content-Type string required
    The field must be set to the fixed value application/json; charset=utf-8.
  • Authorization string required
    The access token for the API resource. Refer to App authorization to obtain the access token, and then pass the obtained token in the Bearer format.
    Example:
    Bearer eyJhbGciOiJIUzUxMiJ9.eyJhcHBLZXkiOiJmMjM3OWQyMTYyOGMzM2QxMWRiMWZkYjY5N2EzZjdjMjZlNGMwYTA5Iiwic2VsbGVySWQiOiIyMDAwMjM0ODgwIiwic3RvcmVJZCI6IjE2NzIzNjk3Mjk2MDYiLCJ2ZXJzaW9uIjoiVjIiLCJkb21haW4iOiJodHRwczovL3NsLW9wZW4tc2cubXlzaG9wbGluZS5jb20iLCJ0aW1lc3RhbXAiOjE2NzUzMTk0OTI0MzksImlzcyI6Inlzb3VsIiwiZXhwIjoxNzY5OTI3NDkyfQ.UwQzomM2veGCUaOZ0paUxq5dpc7DXuhHYFvsQ_uIAKduzWcb_j2E4q_36El83sp145D4cKbpcE5KCeeIz-JNQw
Status Codes
For the complete list of codes and messages, see Http status code.

Response Headers
  • traceId
    A globally unique identifier for the request. It is used to track the request flow throughout the system, allowing for easy location and debugging when issues arise.
Response Body
  • locationsobject[]
    Location information list.
  • active boolean
    Whether the location is enabled.
    • true: enabled
    • false: disabled
  • address1 string
    The first line of the address. This typically includes information such as the street address or a post office box number.
  • address2 string
    The second line of the address. This typically includes information such as apartment, suite, or unit number.
  • city string
    The city in the address.
  • country string
    The country or region in the address.
  • country_code string
    A two-letter country or region code that follows the ISO 3166-1 standard, used to identify a specific country or region in the address.
  • created_at string
    The date and time when the location was created. Format: ISO 8601.
  • id string
    The unique identifier for the location.
  • is_default string
    Whether it is the default location. Valid values are:
    • true: default location
    • false: not a default location
  • legacy boolean
    Whether it is a fulfillment app location.
    • true: Is a fulfillment app location.
    • false: Is not a fulfillment app location.
  • name string
    Location name.
  • phone string
    Phone number.
  • phone_code string
    The international dialing code for the phone number.
  • province string
    The province in the address.
  • province_code string
    The code for the province in the address, which is a system custom code.
  • updated_at string
    The date and time when the location was updated. Format: ISO 8601.
  • zip string
    The postal code information of the address.
API Explorer
https://openapiceshidianpu.myshopline.com/admin/openapi/v20260301

ParamOptions

header required

Language

curl --request GET \
--url https://openapiceshidianpu.myshopline.com/admin/openapi/v20260301/locations/list.json \
--header 'Authorization: Bearer eyJhbGciOiJIUzUxMiJ9.eyJhcHBLZXkiOiJmMjM3OWQyMTYyOGMzM2QxMWRiMWZkYjY5N2EzZjdjMjZlNGMwYTA5Iiwic2VsbGVySWQiOiIyMDAwMjM0ODgwIiwic3RvcmVJZCI6IjE2NzIzNjk3Mjk2MDYiLCJ2ZXJzaW9uIjoiVjIiLCJkb21haW4iOiJodHRwczovL3NsLW9wZW4tc2cubXlzaG9wbGluZS5jb20iLCJ0aW1lc3RhbXAiOjE2NzUzMTk0OTI0MzksImlzcyI6Inlzb3VsIiwiZXhwIjoxNzY5OTI3NDkyfQ.UwQzomM2veGCUaOZ0paUxq5dpc7DXuhHYFvsQ_uIAKduzWcb_j2E4q_36El83sp145D4cKbpcE5KCeeIz-JNQw' \
--header 'Content-Type: application/json; charset=utf-8' \
--header 'accept: application/json'
Examples
Get location list
Response
{
"locations": [
{
"active": "true",
"address1": "456 Oak Avenue",
"address2": "ABC",
"city": "Los Angeles",
"country": "United States",
"country_code": "US",
"created_at": "2023-03-22T10:15:00Z",
"id": "***************61850",
"is_default": "false",
"legacy": "false",
"name": "Tom",
"phone": "0013101231234",
"phone_code": "+1",
"province": "California",
"province_code": "CA",
"updated_at": "2023-07-05T09:20:00Z",
"zip": "90001"
}
]
}
Was this article helpful to you?