Parola Değiştir (Hosting)
Bu eylem ile seçilen hosting hizmetinin kullanıcı parolası API aracılığı ile değiştirilir.
Method / Endpoint
POST/ {{API_URL}} order/transaction
İstek Parametreleri
İsim | Zorunlu | Açıklama |
---|---|---|
key | Evet | API Key |
id | Evet | Sipariş ID Numarası |
action | Evet | Yapılmak istenen işlemin adı: change-password |
password | Evet | Yeni Parola |
Örnek cURL İsteği
curl --location 'https://example.com/api/reseller/order/transaction' \
--header 'Content-Type: application/json' \
--data '{
"key": "UzZBSlBWeWk0UEcrVWxlU0RjS1B1dz09",
"id": 3,
"action": "change-password",
"password":"lv34EGMrGY32VbvMC"
}'
Örnek JSON Yanıtı
{
"status": "successful"
}