Skip to main content
GET
/
v3
/
stores
/
{store_id}
/
customers
/
me
/
addresses
List authenticated customer addresses
curl --request GET \
  --url https://api.scalev.com/v3/stores/{store_id}/customers/me/addresses \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": 123,
      "name": "<string>",
      "phone": "<string>",
      "email": "jsmith@example.com",
      "location": {
        "id": 123,
        "subdistrict_name": "<string>",
        "city_name": "<string>",
        "province_name": "<string>"
      },
      "address": "<string>",
      "postal_code": "<string>",
      "notes": "<string>"
    }
  ],
  "is_paginated": true,
  "has_next": true,
  "has_previous": true,
  "next_cursor": "<string>",
  "previous_cursor": "<string>",
  "page_size": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

store_id
string
required

Store unique_id.

Response

Customer address list

data
object[]
required
is_paginated
enum<boolean>
required
Available options:
true
has_next
boolean
has_previous
boolean
next_cursor
string | null
previous_cursor
string | null
page_size
integer