> ## 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 Phones

> Cisco flag for phone inventory

Mark/unmark a phone as a Cisco device.

## List All

```
GET /api/v1/cisco-phones
Authorization: Bearer <token>
```

## Get by MAC

```
GET /api/v1/cisco-phones/AA:BB:CC:DD:EE:01
Authorization: Bearer <token>
```

## Upsert

```
PUT /api/v1/cisco-phones/AA:BB:CC:DD:EE:01
Authorization: Bearer <token>
```

| Field | Type    | Required |
| ----- | ------- | -------- |
| cisco | boolean | yes      |

```json theme={null}
{
  "mac": "AA:BB:CC:DD:EE:01",
  "cisco": true
}
```

## Delete

```
DELETE /api/v1/cisco-phones/AA:BB:CC:DD:EE:01
Authorization: Bearer <token>
```
