The relevant endpoint and http method information used to list erroneous card transactions is given below.
HTTP Method | URL |
---|---|
POST | /v1/cp/Transaction/CardTransactionFailedList |
Params | Type | Mandatory |
---|---|---|
page_size | integer | Yes |
page_index | integer | No |
order_column | string | Yes |
order_by | string | Yes |
first_six_number | string | No |
last_four_number | string | No |
customer_name | string | No |
customer_surname | string | No |
phone_number | string | No |
start_date | string | Yes |
end_date | string | No |
card_no | string | No |
Params | Type |
---|---|
status | int |
code | string |
message | string |
payload | obje |
items | obje |
customer_name | string |
customer_surname | string |
card_no | string |
phone_number | string |
transaction_amount | decimal |
response_code | string |
response_message | string |
wallet_number | string |
tenant_customer_no | string |
product_code | string |
merchant_name | string |
request_date | string |
ocean_txn_guid | string |
created_date_time | string |
current_index | int |
page_count | int |
page_size | int |
row_count | int |
REQUEST (POST) :
{
"page_index": 0,
"page_size": 5,
"order_column": "CustomerName",
"order_by": "asc",
"first_six_number": "43461",
"last_four_number": "0078",
"customer_name": "baris",
"customer_surname": "toper",
"phone_number": "905553009649",
"card_no": "434610kngnvr0078",
"start_date": "2022-02-03T08:28:28.985Z",
"end_date": "2023-11-03T08:28:28.985Z"
}
RESPONSE:
{
"status": 0,
"code": "200",
"message": "Ok",
"payload": {
"items": [
{
"customer_name": "BARIS",
"customer_surname": "TOPER",
"card_no": "434610kngnvr0078",
"phone_number": "905553009649",
"transaction_amount": 30.0000,
"response_code": "57",
"response_message": "Karta Izin Verilmeyen Islem",
"wallet_number": "1631104009",
"tenant_customer_no": "3972780103",
"product_code": "SANAL",
"merchant_name": "USKUDAR ALTUNIZADE METRO ",
"request_date": "20220414",
"ocean_txn_guid": "4000000892026842",
"created_date_time": "2023-03-01T15:34:25.493Z"
}
],
"current_index": 0,
"page_count": 1,
"page_size": 5,
"row_count": 1
}
}