cURL
curl --request PATCH \ --url https://api.example.com/user/my \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "email": "jsmith@example.com", "password": "<string>", "status": "<string>", "default_role": "<string>" } '
{ "user_id": 123, "email": "jsmith@example.com", "status": "<string>", "default_role": "<string>", "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "partner_id": 123, "last_login_at": "2023-11-07T05:31:56Z" }
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successful Response