Kart oluşturma limitini sorgulamak için ilgili endpoint ve https metod bilgisi aşağıda verilmiştir.
HTTP Method | URL |
---|---|
POST | /card/getCreateCardLimit |
Parametre | Tip | Zorunlu | Açıklama |
---|---|---|---|
wallet_number | string | Evet | Cüzdan Numarası |
product_code | string | Evet | Ürün Kodu |
tenant_code | string | Hayır | Temsilci Kodu |
corelation_id | string | Hayır | Korelasyon Id |
Parametre | Tip | Açıklama |
---|---|---|
status | int | İşlem Statüsü |
code | string | Kod |
message | string | Mesaj |
payload | obje | Veri |
create_card_limit | int | Kart Oluşturma Limiti |
İSTEK (POST) :
{
"wallet_number": "156156156",
"product_code": "HPS40",
"tenant_code": "",
"corelation_id": ""
}
YANIT:
{
"status": 0,
"code": "200",
"message": "",
"payload": {
"create_card_limit": 2
}
}