GET /v1/backup/{id}/status
Belirli bir makine/hesap için yedek durumunu döner.
İstek
GET https://kladim.com/api/v1/backup/12345/status
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
{
"status": "yedeklendi | yedeklenmedi",
"lastErrorDate": "2025-10-22",
"lastErrorTime": "14:03:00",
"lastErrorMessage": "Network timeout"
}
cURL
curl -X GET "https://kladim.com/api/v1/backup/12345/status" \
-H "Authorization: Bearer <token>" \
-H "Accept: application/json"