curl --request PATCH \
--url https://app.happyrobot.ai/api/v1/user/{id} \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"first_name": "<string>",
"last_name": "<string>",
"image_url": "<string>"
}'
{
"id": "<string>",
"email": "jsmith@example.com",
"first_name": "<string>",
"last_name": "<string>",
"image_url": "<string>"
}
curl --request PATCH \
--url https://app.happyrobot.ai/api/v1/user/{id} \
--header 'Content-Type: application/json' \
--header 'authorization: <authorization>' \
--data '{
"first_name": "<string>",
"last_name": "<string>",
"image_url": "<string>"
}'
{
"id": "<string>",
"email": "jsmith@example.com",
"first_name": "<string>",
"last_name": "<string>",
"image_url": "<string>"
}
Your API key for authentication. Use Bearer format.
"Bearer API_KEY"
The user's unique identifier.
24
Body
The body is of type object
.
200
The response is of type object
.
Was this page helpful?