POST /v1/backup/{id}/run
Belirtilen hedef için anlık yedeklemeyi başlatır.
İstek
POST https://kladim.com/api/v1/backup/12345/run
Authorization: Bearer <token>
Content-Type: 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
{
"success": true,
"remainingBackupQuota": 12
}
cURL
curl -X POST "https://kladim.com/api/v1/backup/12345/run" \
-H "Authorization: Bearer <token>" \
-H "Content-Type: application/json" \
-d '{}'