Skip to main content

SEPA Transfers

This module contains endpoints for transfer SEPA funds to other IBANs.


Get SEPA transfer details

Method: GET
Endpoint: /v1/sepa-transfer/details/:transferId

Request

Parameters - required

NameTypeRequiredExampleDescription
transferIdstringYes7fb02323-969a-4936-94ea-86b8773ff1a2Unique ID of the transfer

Response

Code: 200
Description: Returns details of the transfer

Example response

{
"id": "7fb02323-969a-4936-94ea-86b8773ff1a2",
"type": "external",
"amount": 100,
"transferTitle": "Bank transfer",
"destinationIban": "LT601010012345678901",
"receiverFirstName": "John",
"receiverLastName": "Doe",
"status": "SUCCESSFUL",
"currency": "eur",
"fee": 10,
"createdAt": "2024-01-01T12:34:56Z",
"user": {
"externalUserId": "8bdd8c8a-e9b7-475e-9690-8a34e8b78dab",
"email": "Giovani34@yahoo.com",
"firstName": "Will",
"lastName": "Hahn",
"address": "0294 Greenholt Burgs",
"city": "Wilfredchester",
"country": "BM",
"documentType": "id",
"documentNumber": "109314",
"pesel": null,
"birthCountry": null,
"birthDate": null
}
}

 

Code: 400
Description: Partner not found

Example response

{
"errorCode": "P418",
"errorName": "partner-not-found"
}

 

Code: 404
Description: Sepa transfer not found

Example response

{
"errorCode": "P428",
"errorName": "sepa-transfer-not-found"
}