# Get Import Code

> Channels API · Biss

```http
GET /api/channel-biss/import-code/
```

Get the appliance's BISS Import Code, needed before client-side encryption.

## Authentication

- `Authorization` header — Bearer authentication of the form `Bearer <token>`.

## Example request

```bash
curl -X GET "/api/channel-biss/import-code/" \
  -H "Authorization: Bearer <token>"
```

## Responses

### 200 — Successful Response

- `importCode` · object · Optional
  - One of the following variants:
    - **string** (string)
    - **null** (null)

Example:

```json
{
  "importCode": "string"
}
```

---

Source spec: `channels-api` · operationId: `get_import_code_biss_import_code__get`
