Transaction
AsyncTransaction
Bases: BaseAsyncAPIWrapper
Source code in pykuda2/wrappers/async_wrappers/transaction.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 |
|
confirm_transfer_recipient(beneficiary_account_number, beneficiary_bank_code, sender_tracking_reference, is_request_from_virtual_account, request_reference=None)
async
Retrieves information of a beneficiary for validation before initiating a transfer.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
beneficiary_account_number |
str
|
Destination bank account number. |
required |
beneficiary_bank_code |
str
|
Destination bank code. |
required |
sender_tracking_reference |
Optional[str]
|
Tracking reference of the virtual account trying to do the actual transfer. Leave it empty if the intended transfer is going to be from the main account. |
required |
is_request_from_virtual_account |
bool
|
If the intended transfer is to be made by the virtual account. |
required |
request_reference |
Optional[str]
|
a unique identifier for this api call. it is automatically generated if not provided. |
None
|
Returns:
Type | Description |
---|---|
APIResponse
|
An |
Raises:
Type | Description |
---|---|
ConnectionException
|
when the request times out or in the absence of an internet connection. |
Source code in pykuda2/wrappers/async_wrappers/transaction.py
fund_transfer(beneficiary_account, beneficiary_bank_code, beneficiary_name, amount, narration, name_enquiry_session_id, sender_name, client_fee_charge=0, client_account_number=None, request_reference=None)
async
Sends money from your main Kuda account to another bank accounts.
Please, do not use sensitive data while doing test transactions so as not to save it in your sandbox environment.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
beneficiary_account |
str
|
Destination bank account number. |
required |
beneficiary_bank_code |
str
|
Destination bank code. |
required |
beneficiary_name |
str
|
Name of the recipient. |
required |
amount |
Union[int, float]
|
Amount to be transferred. Note care should be taken when performing calculations as money is involved.
a |
required |
narration |
str
|
User defined reason for the transaction. |
required |
name_enquiry_session_id |
str
|
Session ID generated from the nameEnquiry request. |
required |
sender_name |
str
|
Name of the person sending money. |
required |
client_fee_charge |
int
|
It is an amount a client wishes to charge their customer for a transfer being carried out. |
0
|
client_account_number |
Optional[str]
|
Account number of the client where the charged fee is sent to. |
None
|
request_reference |
Optional[str]
|
a unique identifier for this api call. it is automatically generated if not provided. |
None
|
Returns:
Type | Description |
---|---|
APIResponse
|
An |
Raises:
Type | Description |
---|---|
ConnectionException
|
when the request times out or in the absence of an internet connection. |
Source code in pykuda2/wrappers/async_wrappers/transaction.py
fund_virtual_account(tracking_reference, amount, narration, request_reference=None)
async
Add funds to a virtual account.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tracking_reference |
str
|
The virtual account tracking reference. |
required |
amount |
Union[int, float]
|
The amount you want to fund your account. Note care should be taken when performing calculations as money is involved.
a |
required |
narration |
str
|
The additional description for the transaction. |
required |
request_reference |
Optional[str]
|
a unique identifier for this api call. it is automatically generated if not provided. |
None
|
Returns:
Type | Description |
---|---|
APIResponse
|
An |
Raises:
Type | Description |
---|---|
ConnectionException
|
when the request times out or in the absence of an internet connection. |
Source code in pykuda2/wrappers/async_wrappers/transaction.py
get_banks(request_reference=None)
async
Retrieves all the banks available from NIPS
In production, the list of banks and bank codes may change based on the responses gotten from NIBSS (Nigerian Interbank Settlement System).
Args: request_reference: a unique identifier for this api call. it is automatically generated if not provided.
Returns:
An APIResponse
which is basically just a dataclass containing the data returned by the server as result
of calling this function.
Raises:
Type | Description |
---|---|
ConnectionException
|
when the request times out or in the absence of an internet connection. |
Source code in pykuda2/wrappers/async_wrappers/transaction.py
get_filtered_transaction_history(page_size, page_number, start_date, end_date, request_reference=None)
async
Retrieves a filtered transaction history.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
start_date |
str
|
Transaction start date. Format (YYYY-MM-DD) |
required |
end_date |
str
|
Transaction end date. Format (YYYY-MM-DD) |
required |
page_size |
int
|
This specifies the number of transactions to be retrieved. |
required |
page_number |
int
|
This specifies the index of the paginated results retrieved. |
required |
request_reference |
Optional[str]
|
a unique identifier for this api call. it is automatically generated if not provided. |
None
|
Returns:
Type | Description |
---|---|
APIResponse
|
An |
Raises:
Type | Description |
---|---|
ConnectionException
|
when the request times out or in the absence of an internet connection. |
Source code in pykuda2/wrappers/async_wrappers/transaction.py
get_status(is_third_party_bank_transfer, transaction_request_reference, request_reference=None)
async
Retrieves the status of a transaction.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
is_third_party_bank_transfer |
bool
|
Flag to determine if the transaction was interbank or intra-bank. |
required |
transaction_request_reference |
str
|
The request reference used when make transaction. |
required |
request_reference |
Optional[str]
|
a unique identifier for this api call. it is automatically generated if not provided. |
None
|
Returns:
Type | Description |
---|---|
APIResponse
|
An |
Raises:
Type | Description |
---|---|
ConnectionException
|
when the request times out or in the absence of an internet connection. |
Source code in pykuda2/wrappers/async_wrappers/transaction.py
get_transaction_history(page_size, page_number, request_reference=None)
async
Retrieves a list of all main account transactions.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
page_size |
int
|
This specifies the number of transactions to be retrieved. |
required |
page_number |
int
|
This specifies the index of the paginated results retrieved. |
required |
request_reference |
Optional[str]
|
a unique identifier for this api call. it is automatically generated if not provided. |
None
|
Returns:
Type | Description |
---|---|
APIResponse
|
An |
Raises:
Type | Description |
---|---|
ConnectionException
|
when the request times out or in the absence of an internet connection. |
Source code in pykuda2/wrappers/async_wrappers/transaction.py
get_transaction_logs(request_reference, response_reference, transaction_date, has_transaction_date_range_filter, start_date, end_date, page_size, page_number, fetch_successful_records=False)
async
Retrieves all transactions.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
request_reference |
str
|
a unique identifier for this api call. it is automatically generated if not provided. |
required |
response_reference |
str
|
Transaction response reference. |
required |
fetch_successful_records |
bool
|
If set to |
False
|
transaction_date |
str
|
The transaction date. Format (YYYY-MM-DD) |
required |
has_transaction_date_range_filter |
bool
|
Is set to |
required |
start_date |
str
|
Transaction start date. Format (YYYY-MM-DD) |
required |
end_date |
str
|
Transaction end date. Format (YYYY-MM-DD) |
required |
page_size |
int
|
This specifies the number of transactions to be retrieved. |
required |
page_number |
int
|
This specifies the index of the paginated results retrieved. |
required |
Returns:
Type | Description |
---|---|
APIResponse
|
An |
Raises:
Type | Description |
---|---|
ConnectionException
|
when the request times out or in the absence of an internet connection. |
Source code in pykuda2/wrappers/async_wrappers/transaction.py
get_transfer_instructions(account_number, reference, amount, original_request_ref, status, page_number, page_size, request_reference=None)
async
Retrieves transfer instructions and returns the status of the transaction.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
account_number |
str
|
The beneficiary’s account number. |
required |
reference |
str
|
The reference on the transfer instruction. |
required |
amount |
Union[int, float]
|
The transaction amount. Note care should be taken when performing calculations as money is involved.
a |
required |
original_request_ref |
str
|
The request reference used in logging the instruction. |
required |
status |
TransactionStatus
|
The status of the transaction. |
required |
page_size |
int
|
This specifies the number of transfer instructions to be retrieved. |
required |
page_number |
int
|
This specifies the index of the paginated results retrieved. |
required |
request_reference |
Optional[str]
|
a unique identifier for this api call. it is automatically generated if not provided. |
None
|
Returns:
Type | Description |
---|---|
APIResponse
|
An |
Raises:
Type | Description |
---|---|
ConnectionException
|
when the request times out or in the absence of an internet connection. |
Source code in pykuda2/wrappers/async_wrappers/transaction.py
get_virtual_account_filtered_transaction_history(tracking_reference, page_size, page_number, start_date, end_date, request_reference=None)
async
Retrieves a filtered list of all virtual account transactions.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tracking_reference |
str
|
The virtual account unique identifier. |
required |
page_size |
int
|
This specifies the number of transactions to be retrieved. |
required |
page_number |
int
|
This specifies the index of the paginated results retrieved. |
required |
start_date |
str
|
Transaction start date. Format (YYYY-MM-DD) |
required |
end_date |
str
|
Transaction end date. Format (YYYY-MM-DD) |
required |
request_reference |
Optional[str]
|
a unique identifier for this api call. it is automatically generated if not provided. |
None
|
Returns:
Type | Description |
---|---|
APIResponse
|
An |
Raises:
Type | Description |
---|---|
ConnectionException
|
when the request times out or in the absence of an internet connection. |
Source code in pykuda2/wrappers/async_wrappers/transaction.py
get_virtual_account_transaction_history(tracking_reference, page_size, page_number, request_reference=None)
async
Retrieves a list of all virtual account transactions.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tracking_reference |
str
|
The virtual account unique identifier. |
required |
page_size |
int
|
This specifies the number of transactions to be retrieved. |
required |
page_number |
int
|
This specifies the index of the paginated results retrieved. |
required |
request_reference |
Optional[str]
|
a unique identifier for this api call. it is automatically generated if not provided. |
None
|
Returns:
Type | Description |
---|---|
APIResponse
|
An |
Raises:
Type | Description |
---|---|
ConnectionException
|
when the request times out or in the absence of an internet connection. |
Source code in pykuda2/wrappers/async_wrappers/transaction.py
process_transfers(fund_transfer_instructions, request_reference=None)
async
Allows you to send a list of transfer instructions to Kuda, to make the payments on your behalf.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
fund_transfer_instructions |
list[TransferInstruction]
|
A list of transfer instructions for transfers to be made. |
required |
request_reference |
Optional[str]
|
a unique identifier for this api call. it is automatically generated if not provided. |
None
|
Returns:
Type | Description |
---|---|
APIResponse
|
An |
Raises:
Type | Description |
---|---|
ConnectionException
|
when the request times out or in the absence of an internet connection. |
Source code in pykuda2/wrappers/async_wrappers/transaction.py
virtual_account_fund_transfer(tracking_reference, beneficiary_account, amount, beneficiary_name, narration, beneficiary_bank_code, sender_name, name_enquiry_id, client_fee_charge=0, client_account_number=None, request_reference=None)
async
Transfer money from a virtual account to another and any other Nigerian bank account.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tracking_reference |
str
|
Unique identifier of the sender. |
required |
beneficiary_account |
str
|
Destination bank account number. |
required |
beneficiary_bank_code |
str
|
Destination bank code. |
required |
beneficiary_name |
str
|
Name of the recipient. |
required |
amount |
Union[int, float]
|
Amount to be transferred. Note care should be taken when performing calculations as money is involved.
a |
required |
narration |
str
|
User defined reason for the transaction. |
required |
name_enquiry_id |
str
|
Session ID generated from the nameEnquiry request. |
required |
sender_name |
str
|
Name of the person sending money. |
required |
client_fee_charge |
Union[int, float]
|
It is an amount a client wishes to charge their customer
for a transfer being carried out. Note care should be taken when performing calculations as money is involved.
a |
0
|
client_account_number |
Optional[str]
|
Account number of the client where the charged fee is sent to. |
None
|
request_reference |
Optional[str]
|
a unique identifier for this api call. it is automatically generated if not provided. |
None
|
Returns:
Type | Description |
---|---|
APIResponse
|
An |
Raises:
Type | Description |
---|---|
ConnectionException
|
when the request times out or in the absence of an internet connection. |
Source code in pykuda2/wrappers/async_wrappers/transaction.py
withdraw_from_virtual_account(tracking_reference, amount, narration, client_fee_charge=0, request_reference=None)
async
Transfer funds from a virtual account to an associated Kuda account or to any other Nigerian Bank account.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
tracking_reference |
str
|
The virtual account tracking reference. |
required |
amount |
Union[int, float]
|
The amount you want to fund your account. Note care should be taken when performing calculations as money is involved.
a |
required |
narration |
str
|
The additional description for the transaction. |
required |
client_fee_charge |
int
|
It is an amount a client wishes to charge their customer for a transfer being carried out. |
0
|
request_reference |
Optional[str]
|
a unique identifier for this api call. it is automatically generated if not provided. |
None
|
Returns:
Type | Description |
---|---|
APIResponse
|
An |
Raises:
Type | Description |
---|---|
ConnectionException
|
when the request times out or in the absence of an internet connection. |