Info

  • Bank Account List
  • Check IBAN Number
  • CheckCardBIN

GET /api/v1/Info/BankAccountList

This service returns the bank list information of Param corporate accounts.

Parameters Type Description
resultObject Object
bankAccounts Object
eftCode String EFT Code value
bankName String Bank Name
iban String IBAN Information
receiverName String Recipient Name
bankUrl String Bank URL information
resultInfo Object
isSuccess boolean Success status
code String Code
description String Description
message String Message
innerInfo String Inner Information
mapCodeForLastUser String -
statistics String -
{
    "resultObject": {
      "bankAccounts": [
        {
          "eftCode": "0046",
          "bankName": "Akbank",
          "iban": "TR890004600736888000269228",
          "receiverName": "Turk Elektronik Para A.Ş.",
          "bankUrl": "https://paramapp.onelink.me/xMYy/ysmrgfhv"
        }
        {
          "eftCode": "0143",
          "bankName": "Aktif Bank",
          "iban": "TR970014300000000003048487",
          "receiverName": "Turk Elektronik Para A.Ş.",
          "bankUrl": "https://paramapp.onelink.me/xMYy/ysmrgfhv"
        }
        ...
      ]
    },
    "resultInfo": {
        "isSuccess": true,
        "code": "0000",
        "description": "Successed",
        "message": "",
        "innerInfo": null,
        "mapCodeForLastUser": null,
        "statistics": null
    }
}

POST /api/v1/Info/CheckIBANNumber

This service checks the IBAN number and whether it belongs to the user. It works integrated with KKB IBAN verification service. It compares IBAN and TCKN in the back process.

Parameters Required Type Description
IBAN Evet String IBAN Information
accountId Evet String Account Ids
Parametre Tip Açıklama
resultObject Object
isSuccess String Success Status
description String Description
resultInfo Object
isSuccess boolean Success status
code String Code
description String Description
message String Message
innerInfo String Inner Information
mapCodeForLastUser String -
statistics String -
{
    "IBAN": "TR630001001683390244585004",
    "accountId": "0b8b3cf1-acd6-4509-9d47-19fdd541a85f",
}
{
    "resultObject": {
        "isSuccess": "1",
        "description": "Iban doğrulandı."
    },
    "resultInfo": {
        "isSuccess": true,
        "code": "0000",
        "description": "Successed",
        "message": "",
        "innerInfo": null,
        "mapCodeForLastUser": null,
        "statistics": null
    }
}

POST /api/v1/Info/CheckCardBIN

This service returns the information of the BIN number sent.

Parameters Required Type Description
CardBIN Evet String Card BIN Information
Parameters Type Description
resultObject Object
bin String BIN Information
eftCode Integer EFT Code
eftCodeStr String EFT Code Value
bankName String Bank Name
network String Card Type (Master Kart, Visa, Troy etc.)
cardType String Type of card (Kredi Kartı, Debit Kart)
isBusinessCard Boolean Corporate Card?
resultInfo Object
isSuccess boolean Success status
code String Code
description String Description
message String Message
innerInfo String Inner Information
mapCodeForLastUser String -
statistics String -
{
    "CardBIN": "554960",
}
{
    "resultObject": {
        "bin": "554960",
        "eftCode": 62,
        "eftCodeStr": "0062",
        "bankName": "T. GARANTİ BANKASI A.Ş.",
        "network": "MASTER",
        "cardType": "K",
        "isBusinessCard": "Hayır"
    }
    "resultInfo": {
        "isSuccess": true,
        "code": "0000",
        "description": "Successed",
        "message": "",
        "innerInfo": null,
        "mapCodeForLastUser": null,
        "statistics": null
    }
}