Get Payment Items

This retrieves the list of available payment items.

To get the list of available payment items, you append your token to the get payment items endpoint path and make a get request.

It is required to append your token to this request for a successful response.

// Live URL 
http://api.mybankone.com/thirdpartyapiservice/apiservice/
BillsPayment/GetPaymentItems/{Token}

GET https://staging.mybankone.com/thirdpartyapiservice/apiservice/BillsPayment/ GetPaymentItems/{Token}

Path Parameters

Name
Type
Description

Token*

String

Authentication Key for the request

[
    {
        "Code": "900909",
        "BillerId": "900",
        "Amount": 0,
        "ID": "909",
        "Name": "Fund Wallet",
        "Status": false,
        "StatusDetails": null,
        "RequestStatus": false,
        "ResponseDescription": null,
        "ResponseStatus": null
    },
    {
        "Code": "25801",
        "BillerId": "258",
        "Amount": 0,
        "ID": "01",
        "Name": "Fund Wallet",
        "Status": false,
        "StatusDetails": null,
        "RequestStatus": false,
        "ResponseDescription": null,
        "ResponseStatus": null
    },
    ]

Last updated