Retrieve details for a specific payment identified by [payment-id].
End-point URL #
http://[ip]:[port]/psd2/v1/payments/domestic-credit-transfers-bgn/[payment-id]
Method: GET
HEADERS #
X-Request-ID: [request-id] – Required: Unique request ID (GUID).
Content-Type: application/json – Required: Specifies the request format.
Consent-ID: [consent-id] – Required: ID of the consent associated with the payment.
PSU-ID: [user-id] – Optional for future use.
RESPONSE #
{
"instructedAmount": {
"currency": "USD",
"content": 123.5
},
"debtorAccount": {
"iban": {
"iban": "BG53TEPJ40131001000119"
},
"bban": null,
"pan": null,
"maskedPan": null,
"msisdn": null,
"resourceId": null,
"name": null,
"product": null,
"cashAccountType": null,
"currency": null,
"_links": null
},
"creditorName": "IhuAhu.com",
"creditorAccount": {
"iban": {
"iban": "TR73TURKBANK123456789"
},
"bban": null,
"pan": null,
"maskedPan": null,
"msisdn": null,
"resourceId": null,
"name": null,
"product": null,
"cashAccountType": null,
"currency": null,
"_links": null
},
"transactionStatus": "RCVD",
"paymentId": "526091c1-e4ac-410a-a642-65af191ee8a9",
"paymentType": {
"serviceLevel": "SS1"
},
"remittanceInformationUnstructured": "ihuahu link"
}
Remarks #
Retrieves detailed information about a specific payment identified by [payment-id].
The transactionStatus field indicates the current status of the payment.
Contains information about the instructed amount, debtor account (payer), creditor details (recipient), payment type, and remittance information.
No _links are provided in the response.
Snippet #