curl --request GET \
--url https://api.hyperline.co/v1/users/{id} \
--header 'Authorization: Bearer <token>'{
"id": "usr_DKL4Xcb5VSa8CQ",
"email": "john@example.com",
"first_name": "John",
"last_name": "Doe",
"picture_url": null,
"role_id": "rol_DKL4Xcb5VSa8CQ",
"is_account_owner": false
}Retrieve the details of an existing user.
curl --request GET \
--url https://api.hyperline.co/v1/users/{id} \
--header 'Authorization: Bearer <token>'{
"id": "usr_DKL4Xcb5VSa8CQ",
"email": "john@example.com",
"first_name": "John",
"last_name": "Doe",
"picture_url": null,
"role_id": "rol_DKL4Xcb5VSa8CQ",
"is_account_owner": false
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
User ID.
"usr_DKL4Xcb5VSa8CQ"
User email address.
"john@example.com"
User first name.
"John"
User last name.
"Doe"
User profile picture URL.
null
ID of the role assigned to the user.
"rol_DKL4Xcb5VSa8CQ"
Whether the user is the account owner.
false
Was this page helpful?