Siparişi Yenile
Bu eylem ile API üzerinden seçilen siparişin süresi yenilenir.
Method / Endpoint
POST/ {{API_URL}} order/renewal
İstek Parametreleri
İsim | Zorunlu | Açıklama |
---|---|---|
id | Evet | Siparişin ID Numarası |
period_type | Evet | Uzatılmak istenen periyot dönemi. Olabilecek değerler: year, month, week, day, hour |
period_duration | Evet | Uzatılmak istenen periyotun süresi. |
Örnek cURL İsteği
curl --location 'https://example.com/api/reseller/order/renewal' \
--header 'Content-Type: application/json' \
--data '{
"key":"UzZBSlBWeWk0UEcrVWxlU0RjS1B1dz09",
"id":3,
"period_type":"month",
"period_duration":1
}'
Örnek JSON Yanıtı
{
"status": "successful",
"invoice_id": 5,
"new_duedate": "2024-03-27 07:37:28",
"fee": "24.0000",
"fee_formatted": "$24"
}