Requires read_location access scope.
For more info, refer to:
GET https://{handle}.myshopline.com/admin/openapi/v20261201/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 eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJhcHBJZCI6MCwiYXBwS2V5IjoiNzU2ZjI1NWE2NjdlZTcwNTk1MzM0ZjVjYzk4NzU5MzBmN2E3NGZjMSIsImV4cCI6MTg3OTQ4MjA3NiwiaXNzIjoieXNvdWwiLCJzZWxsZXJJZCI6IjIwMDAyMzQ4ODAiLCJzdG9yZUlkIjoiMTY3MjM2OTcyOTYwNiIsInRpbWVzdGFtcCI6MTc4NDc4NzY3NjY2MSwidmVyc2lvbiI6IlYyIn0.3ZzbGAH4cLU1QR2VPEvMOQInUDvus-C4amkINSQIPuNVlXsFKj0sAt1c0KnUy9MWUOFV9cHlkf7J90r2y1FzpA
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
  • name string
    Location name.
  • phone string
    Phone number.
  • updated_at string
    The date and time when the location was updated. Format: ISO 8601.
  • address2 string
    The second line of the address. This typically includes information such as apartment, suite, or unit number.
  • country string
    The country or region in the address.
  • created_at string
    The date and time when the location was created. Format: ISO 8601.
  • phone_code string
    The international dialing code for the phone number.
  • province_code string
    The code for the province in the address, which is a system custom code.
  • address1 string
    The first line of the address. This typically includes information such as the street address or a post office box number.
  • city string
    The city 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.
  • is_default string
    Whether it is the default location. Valid values are:
    • true: default location
    • false: not a default location
  • province string
    The province in the address.
  • id string
    The unique identifier for the location.
  • legacy boolean
    Whether it is a fulfillment app location.
    • true: Is a fulfillment app location.
    • false: Is not a fulfillment app location.
  • zip string
    The postal code information of the address.
API Explorer
https://openapiceshidianpu.myshopline.com/admin/openapi/v20261201

ParamOptions

header required

Language

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