Skip to main content
GET
/
v1
/
transactions
/
{id}
/
messages
Get transaction related XML messages
curl --request GET \
  --url https://api.pgw-sandbox.finventi.com/v1/transactions/{id}/messages
[
  {
    "createdAt": "2023-11-07T05:31:56Z",
    "direction": "<string>",
    "messageNameId": "<string>",
    "sepaMessageId": "<string>",
    "xmlValue": "<string>",
    "parentSepaMessageId": "<string>"
  }
]

Path Parameters

id
integer<int64>
required

Transaction ID

Response

Returned xmls related to specific transaction

createdAt
string<date-time>
required

The timestamp of when the message was created.

direction
string
required

Shows whether the message is incoming or outgoing, helping to identify the flow of information.

messageNameId
string
required

Indicates the type or purpose of the message (e.g., pain.001 for credit transfer initiations).

sepaMessageId
string
required

A unique identifier for each SEPA message.

xmlValue
string
required

The actual XML content of the message, providing details on the transaction.

parentSepaMessageId
string

Refers to the preceding message in a sequence, allowing tracking of message flow.