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 |
|---|---|---|
| tenant_id | int | Yes |
| process_level_status_id | int | No |
| currency_code | string | No |
| account_number | string | No |
| wallet_number | string | No |
| ext_transaction_id | string | No |
| begin_amount | decimal | No |
| end_amount | decimal | No |
| start_date | string | No |
| end_date | string | No |
| iban | string | No |
| account_type_id | int | No |
| page_size | int | Yes |
| page_index | int | Yes |
| order_column | string | No |
| order_by | string | No |
| is_completed | boolean | No |
| Params | Type |
|---|---|
| status | int |
| code | string |
| message | string |
| payload | object |
| results | object |
| id | string |
| tenant_id | string |
| wallet_id | string |
| wallet_number | string |
| tx_correlation_id | int |
| ext_transaction_id | string |
| account_type | int |
| account_id | string |
| account_number | string |
| bank_id | string |
| bank_name | string |
| account_saved_bank_id | string |
| is_account_owner_bank | boolean |
| name | string |
| account_holder_name | string |
| iban | string |
| bank_account_no | string |
| swift_code | string |
| branch_code | string |
| base_amount | decimal |
| currency | string |
| description | string |
| access_level_status | int |
| process_level_status | int |
| receiver_national_id | string |
| bank_response_json | string |
| created_date_utc | string |
| updated_date_utc | string |
| page_index | int |
| last_row_index | int |
| page_count | int |
| page_size | int |
| row_count | int |
| order_column | string |
| order_by | string |
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"
}
}