---
title: "Mbyll balancen e arkes"
operation_id: "api.v1.cash-register.close"
method: POST
path: "/api/v1/cash-register/close-balance"
group: "Arka Fiskale"
api_version: "v1"
authenticated: true
canonical: "https://fature.al/api-reference/endpoints/api-v1-cash-register-close.html"
---

# Mbyll balancen e arkes

Part of the [fature.al API](/api-reference/index.html) documentation.

## POST /api/v1/cash-register/close-balance

Mbyll diten ne arken fiskale dhe regjistron veprimin `CLOSE_DAY`.

**Nese arka nuk eshte e hapur, hapet vete me balance `0` dhe mbyllet menjehere.** Kjo do te
thote se thirrja nuk deshton kurre sepse dita nuk u hap, prandaj mund ta thirrni ne fund te
turnit pa kontrolluar me pare gjendjen.

Per shifrat e turnit qe sapo u mbyll perdorni raportin e mbylljes se arkes.

Full URL: `https://fature.al/api/v1/cash-register/close-balance`

API version: `v1`.

Authentication: required (bearer token).

### Example request

```bash
curl -X POST 'https://fature.al/api/v1/cash-register/close-balance' \
  -H 'Authorization: Bearer YOUR_TOKEN' \
  -H 'X-Client-Id: YOUR_CLIENT_ID' \
  -H 'X-Client-Secret: YOUR_CLIENT_SECRET' \
  -H 'Accept: application/json'
```

### Responses

**200** — Kur perdoruesi nuk ka pajisje fiskale ose mbyllja deshton, pergjigja kthehet me HTTP 200 dhe `status: false`.

**201** — Created

| Field | Type | Description |
| --- | --- | --- |
| `status` | boolean |  |
| `data` | object |  |
| `data.balance` | number |  |

```json
{
    "status": true,
    "data": {
        "balance": 19.99
    }
}
```
