cURL
curl --request PATCH \ --url http://localhost:8080/api/v1/users/{id} \ --header 'Authorization: <api-key>' \ --header 'Content-Type: application/json' \ --data ' { "data": { "attributes": { "email": "<string>", "name": "<string>", "password": "<string>" }, "type": "<string>" } } '
{ "attributes": { "email": "<string>", "name": "<string>" }, "id": "<string>", "type": "<string>" }
Update an existing user’s information
User ID
Updated user information
User input model
Show child attributes
OK
User response model
Was this page helpful?