v1
latestOpenAPI 3.0.02026-07-24126202516.7 KBPayTo Payments
Get PayTo Payment Initiation Request Details
This operation is to retrieve details of an initiated payment request. This API should be invoked to know the latest status of the payment initiation request if needed.
Payment initiation request statuses which will be returned via this endpoint -
- PENDING_PAYMENT_INITIATION - when the payment initiation request has been accepted for processing
- PAYMENT_INITIATED - when the payment initiation request is being processed
- PAYMENT_INITIATION_COMPLETED - when the payment initiation request is cleared and settled successfully. Funds can be expected in the user's wallet soon
- PAYMENT_INITIATION_REJECTED - when the payment initiation request is rejected for processing due to validation, funds not available in the debtor's account or any other business reason. A retry can be performed in such scenarios
get/payment_requests/{payment_request_uuid}
Path parameters
payment_request_uuidstring required
Example:g0h40f95-95b7-449b-9835-3c97c0394857
Response
Ok
Example response
{
"payment_request_uuid": "d0c40d95-95b7-449b-9835-3c97c0386585",
"instruction_id": "BANKNTSTXXXI20180501000000000000010",
"agreement_uuid": "d0c40d95-95b7-449b-9835-3c97c0386585",
"agreement_id": "00000000000010008000000000000000",
"status_description": "status description",
"status_reason_description": "reason description",
"payment_reconciled": true,
"created_at": "2022-03-21 16:25:00.312368",
"updated_at": "2022-03-22 16:25:00.312368",
"payment_info": {
"instruction_id": "BANKNTSTXXXI20180501000000000000010",
"instructed_amount": "1000",
"remittance_info": "remittance info",
"unique_superannuation_id": "uniqueSuperannuation id",
"unique_superannuation_code": "uniqueSuperannuation code"
},
"retry_attempts": {
"count": 1,
"retry_info": [
{
"instruction_id": "BANKNTSTXXXI20180501000000000000010",
"status_description": "status description",
"status_reason_description": "reason description",
"created_at": "2022-03-21 16:25:00.312368",
"updated_at": "2022-03-22 16:25:00.312368",
"payment_info": {
"instruction_id": "BANKNTSTXXXI20180501000000000000010",
"instructed_amount": "1000",
"remittance_info": "remittance info",
"unique_superannuation_id": "uniqueSuperannuation id",
"unique_superannuation_code": "uniqueSuperannuation code"
}
}
]
}
}