# Users API Reference

> Source: https://centric-api-docs.certn.co/#users

Endpoints for managing users within your Customer Account.


## Endpoints

| Method | Path | Description |
|--------|------|-------------|
| `GET` | `/api/public/users/` |  |
| `GET` | `/api/public/users/{id}/` |  |

### GET /api/public/users/

Returns a list of all your Users.

#### Parameters

| Name | In | Type | Required | Description |
|------|-----|------|----------|-------------|
| `email` | query | string | No |  |
| `full_name` | query | string | No |  |
| `id` | query | string | No |  |
| `page` | query | integer | No | A page number within the paginated result set. |
| `page_size` | query | integer | No | Number of results to return per page. Defaults to 10, maximum 100. |

#### Example Request

```bash
curl -X GET "https://api.sandbox.certn.co/api/public/users/" \
  -H "Authorization: Api-Key YOUR_API_KEY"
```

### GET /api/public/users/{id}/

Retrieve the details of an individual User.

#### Parameters

| Name | In | Type | Required | Description |
|------|-----|------|----------|-------------|
| `id` | path | string | Yes |  |

#### Example Request

```bash
curl -X GET "https://api.sandbox.certn.co/api/public/users/{id}/" \
  -H "Authorization: Api-Key YOUR_API_KEY"
```

---

*See the [interactive documentation](https://centric-api-docs.certn.co/#users) for more details.*