Lisans İptal Talebi Oluşturma
Bu API komutu ile "lisans iptal talebi oluşturma" işlemi sağlanır.
METHOD | POST |
URL | < API URL >order/cancel |
Content-Type | application/json |
Parametreler
İsim | Zorunlu | Açıklama |
key | Evet | Elde ettiğiniz API anahtarı bilgisi. |
id | Evet | Hizmetin kimlik numarası. |
reason | İsteğe Bağlı | İptal etme sebebi. |
urgency | Evet | İptal önceliği. Olabilecek değerler: period-ending : Hizmetin bitiminde iptal edilir. now: Onaylandığı anda iptal edilir. |
Örnek İstek
{
"key":"< API KEY >",
"id":1001,
"reason":"something write here...",
"urgency":"now"
}
Örnek Çıktı
{
"status":"successful"
}