Authorization: Bearer ********************
{
"data": {
"attributes": {
"firstname": "Alyx",
"lastname": "Vance",
"country": "US"
}
}
}
curl --location --request PATCH 'https://api.servebolt.io/v1/user-profile' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--data-raw '{
"data": {
"attributes": {
"firstname": "Alyx",
"lastname": "Vance",
"country": "US"
}
}
}'
{
"data": {
"id": 420942,
"type": "profile",
"attributes": {
"firstname": "Alyx",
"lastname": "Vance",
"email": "g.freeman@emailprovider.com",
"phone": "+391234569856",
"country": "US",
"picture": "https://secure.gravatar.com/avatar/6---"
}
}
}