Skip to main content
PATCH
/
v3
/
stores
/
{store_id}
/
customers
/
me
Update the authenticated customer profile
curl --request PATCH \
  --url https://api.scalev.com/v3/stores/{store_id}/customers/me \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "phone": "<string>",
  "date_of_birth": "2023-12-25",
  "sex": "<string>",
  "is_unsubscribe": true
}
'
{}

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.

Body

application/json

Customer self-profile fields accepted in public v1. Email is read-only.

name
string
phone
string
date_of_birth
string<date>
sex
string
is_unsubscribe
boolean

Response

Success

Raw single-resource success payload for v3.