The endpoint and http method information used to query the status of withdrawal transactions are given below.
HTTP Method | URL |
---|---|
POST | /v1/TransactionData/GetRequestWithdrawListByFilter |
Params | Type | Mandatory | Description |
---|---|---|---|
tenant_id | int | Yes | Tenant ID |
process_level_status_id | int | No | Transaction Status Id (0: Pending Transactions, 1: Completed Transactions, 2: Rejected Transactions, 3: Failed Transactions) |
currency_code | string | No | Currency Code |
account_number | string | No | Account Number |
wallet_number | string | No | Wallet Number |
ext_transaction_id | string | No | Transaction ID |
begin_amount | decimal | No | Begin Amount |
end_amount | decimal | No | End Amount |
start_date | string | No | Start Date |
end_date | string | No | End Date |
iban | string | No | IBAN |
account_type_id | int | No | Account Type Id (1: Individual, 2: Business) |
page_size | int | Yes | Page Size |
page_index | int | Yes | Page Index |
order_column | string | No | Order Column |
order_by | string | No | Order By |
is_completed | boolean | No | Is Completed ? |
Params | Type | Description |
---|---|---|
status | int | Statıs |
code | string | Code |
message | string | Message |
payload | object | Payload |
results | object | Results |
id | string | ID |
tenant_id | string | Tenant ID |
wallet_id | string | Wallet ID |
wallet_number | string | Wallet Number |
tx_correlation_id | int | Correlation ID |
ext_transaction_id | string | Transaction ID |
account_type | int | Account Type |
account_id | string | Account Id |
account_number | string | Account Number |
bank_id | string | Bank ID |
bank_name | string | Bank Name |
account_saved_bank_id | string | Account Saved Bank Id |
is_account_owner_bank | boolean | Is Account Owner Bank |
name | string | Name |
account_holder_name | string | Account Holder Name |
iban | string | IBAN |
bank_account_no | string | Bank Account No |
swift_code | string | Swift Code |
branch_code | string | Branch Code |
base_amount | decimal | Base Amount |
currency | string | Currency |
description | string | Description |
access_level_status | int | Active/Passive Level |
process_level_status | int | Transaction Status Id (0: Pending Transactions, 1: Completed Transactions, 2: Rejected Transactions, 3: Failed Transactions) |
receiver_national_id | string | Receiver National ID |
bank_response_json | string | Bank Response JSON |
created_date_utc | string | Created Date |
updated_date_utc | string | Update Date |
page_index | int | Page Index |
last_row_index | int | Last Row Index |
page_count | int | Page Count |
page_size | int | Page Size |
row_count | int | Row Count |
order_column | string | Order Column |
order_by | string | Order By |
REQUEST (POST):
{
"tenant_id": 8,
"process_level_status_id": 1,
"currency_code": null,
"account_number": "0298198902",
"wallet_number": null,
"ext_transaction_id": null,
"begin_amount": null,
"end_amount": null,
"start_date":"2022-11-01",
"end_date": "2022-12-01",
"iban": null,
"account_type_id": null,
"page_size": 30,
"page_index": 0,
"order_column": null,
"order_by": "asc",
"is_completed": true
}
RESPONSE:
{
"status": 0,
"code": "100",
"message": "İşlem Başarılı",
"payload": {
"results": [
{
"id": "8939258692615400461",
"tenant_id": "1855146094223813645",
"wallet_id": "3041150649579990029",
"wallet_number": "2001299821",
"tx_correlation_id": 2983569225633360909,
"ext_transaction_id": "21fb407d-f998-454c-a427-0017f1ca7b3b",
"account_type": 1,
"account_id": "3013684338017037325",
"account_number": "0298198902",
"bank_id": null,
"bank_name": null,
"account_saved_bank_id": null,
"is_account_owner_bank": false,
"name": null,
"account_holder_name": "GÜLHAN ÖZALP",
"iban": "TR180001002473703322665001",
"bank_account_no": null,
"swift_code": "",
"branch_code": null,
"base_amount": 720.0000,
"currency": "TRY",
"description": "bireysel odeme\n",
"access_level_status": 1,
"process_level_status": 1,
"receiver_national_id": "36763189362",
"bank_response_json": "{\"Version\":null,\"StatusCode\":200,\"Message\":\"POST Request successful.\",\"ResponseException\":null,\"Result\":true}",
"created_date_utc": "2022-11-09T11:18:56.0862274+03:00",
"updated_date_utc": "2022-11-09T11:30:15.0409009+03:00"
},
{…}
],
"page_index": 1,
"last_row_index": 0,
"page_count": 1,
"page_size": 30,
"row_count": 1,
"order_column": "CreatedDateUtc",
"order_by": "asc"
}
}