GET /v1/backup/{id}/history
Belirtilen hedefin geçmiş yedekleme kayıtlarını döner.
İstek
GET https://kladim.com/api/v1/backup/12345/history
Authorization: Bearer <token>
Accept: application/json
Parametreler
| Ad | Tip | Zorunlu | Konum | Açıklama | Örnek |
|---|---|---|---|---|---|
Authorization | string | Evet | header | Bearer token | Bearer eyJ... |
id | string | Evet | path | Hedef ID | 12345 |
Yanıt
200 OK
{
"items": [
{ "date": "2025-10-20", "time": "23:15:00", "size": "2.1 GB", "status": "success" },
{ "date": "2025-10-19", "time": "23:05:00", "size": "2.0 GB", "status": "success" }
]
}
cURL
curl -X GET "https://kladim.com/api/v1/backup/12345/history" \
-H "Authorization: Bearer <token>" \
-H "Accept: application/json"