---
title: "Get a specific user"
description: "GET /users/{user_id} — Returns one user on your account by ID, including their name, email, photo, role and account rights. bcc_email and google_contacts_email are only included when the ID is your own."
canonical_url: https://developer.onepagecrm.com/api/reference/users/get-users-user_id/
source: Markdown mirror of https://developer.onepagecrm.com/api/reference/users/get-users-user_id/
---

`GET /users/{user_id}`

Returns one user on your account by ID, including their name, email, photo, role and account rights. bcc_email and google_contacts_email are only included when the ID is your own.

Resource: [Users](https://developer.onepagecrm.com/api/reference/users/) · [API Reference](https://developer.onepagecrm.com/api/reference/)

## Request

```bash
curl "https://app.onepagecrm.com/api/v3/users/{user_id}" \
  -u $user_id:$api_key
```

Authentication is HTTP Basic — `user_id` as username, `api_key` as password.
See https://developer.onepagecrm.com/api/authentication/.

## Path parameters

| Name | Type | Description |
| --- | --- | --- |
| `user_id` | string | User ID |

## Responses

### 200

OK

```json
{
  "status": 0,
  "message": "OK",
  "timestamp": 1528373119,
  "data": {
    "user": {
      "id": "5aba31e99007ba0f570c12f7",
      "first_name": "Jane",
      "last_name": "Doe",
      "email": "jane.doe@example.com",
      "company_name": "Big Company Inc.",
      "account_rights": [
        "activity",
        "edit_target",
        "pipeline",
        "export",
        "private_contacts"
      ],
      "photo_url": "https://{foo.bar}/jane-doe.jpg",
      "country_code": "IE",
      "bcc_email": "5abg31e93007ba0f470c92q6@users.onepagecrm.com",
      "google_contacts_email": "jane.doe@example.com"
    }
  }
}
```

Standard error responses: 400, 401, 403, 404, 409, 500 — shared across the API. See https://developer.onepagecrm.com/api/errors/.

## Related guides

- [Authentication](https://developer.onepagecrm.com/api/authentication/)
- [Errors](https://developer.onepagecrm.com/api/errors/)
- [Rate limits](https://developer.onepagecrm.com/api/rate-limits/)
