Find settled SEPA transaction

Use case

After confirming a SEPA payment, we will check that the credit transfer exists using SEPA API with the payment ID.

Use case data
API parameters with values

The path parameter is the payment ID. The ID is taken from the response to the payment request.

".../PAYM-8813/settlement-transactions"

Sample API call

To find the payment, use the following endpoint:

https://sepa-api.sandbox.tuumplatform.comapi/v1/batch/PAYM-8813/settlement-transactions

Learn more about the find settled SEPA transactions endpoint endpoint in the Tuum developer portal.

Sample response

Below you will find the response to the sample request:

Response
{
  "errors": null,
  "validationErrors": null,
  "data": [
    {
      "transactionId": "ID-11941",
      "txId": "ID-11940",
      "paymentId": null,
      "settlementTransactionType": "CREDIT_TRANSFER",
      "messageName": null,
      "reason": null,
      "status": "ACCEPTED",
      "event": null,
      "createdEventTime": "2023-07-12T12:59:19.613712Z",
      "relatedMessage": null,
      "fileReference": "CT00000000013062",
      "fileHeaderId": "ID-13143",
      "sepaScheme": "REGULAR",
      "latestEvent": "CT_ACCEPTED",
      "latestEventDateTime": null,
      "settlementDate": "2023-07-12",
      "amount": {
        "amount": 2,
        "currencyCode": "EUR"
      },
      "directionCode": "OUT"
    }
  ]
}

Result

With this request, we can see the credit transfer details in the response such as the transaction ID, the file reference number, and the status code of the transaction.

Last updated

Was this helpful?