cURL
curl --request GET \ --url https://api.example.com/v1beta1/users/{id}
{ "400": {}, "401": {}, "404": {}, "500": {}, "user": { "id": "<string>", "name": "<string>", "title": "<string>", "email": "<string>", "avatar": "<string>", "state": "<string>", "metadata": {}, "created_at": {}, "updated_at": {} } }
enabled
disabled
curl -X GET 'https://api.frontier.example.com/v1beta1/users/9f256f86-4a1e-4b2a-9c45-6d2c8f5a3b7e' \ -H 'Authorization: Bearer <token>'
{ "user": { "id": "9f256f86-4a1e-4b2a-9c45-6d2c8f5a3b7e", "name": "john.doe", "title": "John Doe", "email": "[email protected]", "avatar": "https://example.com/avatars/john.jpg", "state": "enabled", "metadata": { "department": "Engineering" }, "created_at": "2024-01-15T10:30:00Z", "updated_at": "2024-03-01T14:22:00Z" } }