Bu endpoint ile sahip olduğunuz sunucuların aylık ödeme bilgisini görüntüleyebilirsiniz.
GET https://api.ilkbyte.com/payment/{$servername}
Herhangi bir parametre göndermenize gerek yoktur.
{
"status": true,
"message": "Server Payment Info",
"error": null,
"data": {
"monthly_server_payment": "$4.49"
}
}
Bu endpoint ile sahip olduğunuz sunucuların ödeme hareketlerini listeleyebilirsiniz. Sunucun sahip olduğu son 50 ödeme hareketini listelemektedir.
İşlem tipi (transaction_type) türleri:
GET https://api.ilkbyte.com/payment/activity/{$servername}
Herhangi bir parametre göndermenize gerek yoktur.
{
"status": true,
"message": "Payment Activity",
"error": null,
"data": {
"count": 4,
"payment-activity": [
{
"date": "15.11.2024 09:01:38",
"amount": "- ₺154.50",
"description": "$4.49 karşılığı sunucu apitest için 1 aylık yenileme",
"balance": "₺224.87",
"transaction_type": "Deposit"
},
{
"date": "14.10.2024 09:00:59",
"amount": "- ₺153.92",
"description": "$4.49 karşılığı sunucu apitest için 1 aylık yenileme",
"balance": "₺341.49",
"transaction_type": "Used"
},
{
"date": "14.09.2024 09:00:51",
"amount": "- ₺152.35",
"description": "$4.49 karşılığı sunucu apitest için 1 aylık yenileme",
"balance": "₺756.00",
"transaction_type": "Used"
},
{
"date": "14.08.2024 15:00:38",
"amount": "- ₺150.86",
"description": "$4.49 karşılığı sunucu apitest için 1 aylık ödeme",
"balance": "₺566.69",
"transaction_type": "Used"
}
]
}
}