curl --request PUT \
--url https://api.galileo.ai/v2/users/{user_id} \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '{
"first_name": "Tony",
"last_name": "Newname",
"email": "bigtony@rungalileo.io"
}'
{
"id": "<string>",
"permissions": [],
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"auth_method": "email",
"role": "read_only",
"email_is_verified": true,
"organization_id": "<string>",
"organization_name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
Successful Response
The response is of type object
.
Was this page helpful?
curl --request PUT \
--url https://api.galileo.ai/v2/users/{user_id} \
--header 'Content-Type: application/json' \
--header 'Galileo-API-Key: <api-key>' \
--data '{
"first_name": "Tony",
"last_name": "Newname",
"email": "bigtony@rungalileo.io"
}'
{
"id": "<string>",
"permissions": [],
"email": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"auth_method": "email",
"role": "read_only",
"email_is_verified": true,
"organization_id": "<string>",
"organization_name": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}