curl --request PUT \
--url https://app.azalt.co/api/v1/users/me \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"phone": "<string>",
"locale": "tr"
}
'{
"name": "<string>",
"phone": "<string>",
"email": "<string>",
"locale": "<string>"
}Kullanıcının adını, telefonunu ve tercih ettiği dili günceller; e-posta bu uç noktadan değiştirilemez.
curl --request PUT \
--url https://app.azalt.co/api/v1/users/me \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"phone": "<string>",
"locale": "tr"
}
'{
"name": "<string>",
"phone": "<string>",
"email": "<string>",
"locale": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.