Skip to content

Update my profile (VIES re-check if VAT changes)

PATCH
/store/v1/customers/me
curl --request PATCH \
--url https://your-store.example.com/store/v1/customers/me \
--header 'Content-Type: application/json' \
--data '{ "name": "example", "phone": "example", "vatNumber": "example", "acceptsMarketing": true }'
Media type application/json
object
name
Any of:
string
>= 1 characters <= 255 characters
phone
Any of:
string
>= 1 characters <= 64 characters
vatNumber
Any of:
string
>= 1 characters <= 64 characters
acceptsMarketing
boolean
Example generated
{
"name": "example",
"phone": "example",
"vatNumber": "example",
"acceptsMarketing": true
}