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
}
'{}Customer-authenticated storefront endpoint. Customer email is read-only in public v1.
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
}
'{}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Store unique_id.
Success
Raw single-resource success payload for v3.