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

# Cisco Users

> Associate PIN codes with users for Cisco phones

Manage Cisco user PIN codes (bcrypt-hashed).

## Get by User

```
GET /api/v1/cisco-users/by-user/:userUuid
Authorization: Bearer <token>
```

## Upsert (Create or Update)

```
PUT /api/v1/cisco-users/:userUuid
Authorization: Bearer <token>
```

| Field     | Type   | Required |
| --------- | ------ | -------- |
| pin\_code | string | yes      |

```json theme={null}
{
  "pin_code": "1234"
}
```

## Delete

```
DELETE /api/v1/cisco-users/:userUuid
Authorization: Bearer <token>
```
