> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get User Info

Get info about the given username.

<Note>
  External Documentation

  To learn more, visit the [GitLab documentation](https://docs.gitlab.com/ee/api/users.html#list-current-user).
</Note>

## Parameters

<div className="integrations-table">
  | Parameter | Description                 |
  | --------- | --------------------------- |
  | Username  | The user's GitLab username. |
</div>

## Example Output

```json theme={"dark"}
{
	"id": 1,
	"username": "john_smith",
	"email": "john@example.com",
	"name": "John Smith",
	"state": "active",
	"locked": false,
	"avatar_url": "http://localhost:3000/uploads/user/avatar/1/index.jpg",
	"web_url": "http://localhost:3000/john_smith",
	"created_at": "2012-05-23T08:00:58Z",
	"bio": "",
	"location": null,
	"public_email": "john@example.com",
	"skype": "",
	"linkedin": "",
	"twitter": "",
	"discord": "",
	"website_url": "",
	"organization": "",
	"job_title": "",
	"pronouns": "he/him",
	"bot": false,
	"work_information": null,
	"followers": 0,
	"following": 0,
	"local_time": "3:38 PM",
	"last_sign_in_at": "2012-06-01T11:41:01Z",
	"confirmed_at": "2012-05-23T09:05:22Z",
	"theme_id": 1,
	"last_activity_on": "2012-05-23",
	"color_scheme_id": 2,
	"projects_limit": 100,
	"current_sign_in_at": "2012-06-02T06:36:55Z",
	"identities": [
		{
			"provider": "github",
			"extern_uid": "2435223452345"
		},
		{
			"provider": "bitbucket",
			"extern_uid": "john_smith"
		},
		{
			"provider": "google_oauth2",
			"extern_uid": "8776128412476123468721346"
		}
	],
	"can_create_group": true,
	"can_create_project": true,
	"two_factor_enabled": true,
	"external": false,
	"private_profile": false,
	"commit_email": "admin@example.com"
}
```

## Workflow Library Example

[Get User Info with Gitlab and Send Results Via Email](https://library.blinkops.com/workflows/get-user-info-with-gitlab-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/get-user-info-with-gitlab-and-send-results-via-email/canvas" />
</div>
