Authorization: Bearer ********************{
"name": "string",
"email": "user@example.com",
"password": "pa$$word",
"role": "string",
"is_active": true
}curl --location --request PATCH '/v1/team/users/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "string",
"email": "user@example.com",
"password": "pa$$word",
"role": "string",
"is_active": true
}'{
"id": 302,
"name": "string",
"email": "user@example.com",
"role": "manager",
"is_active": true,
"last_login_at": "2019-08-24T14:15:22.123Z",
"created_at": "2019-08-24T14:15:22.123Z",
"updated_at": "2019-08-24T14:15:22.123Z"
}