Skip to main content
GET
/
v3
/
investigations
Search investigations
curl --request GET \
  --url https://api.pgw-sandbox.finventi.com/v3/investigations
{
  "data": [
    {
      "createdAt": "2023-11-07T05:31:56Z",
      "createdBy": "<string>",
      "direction": "OUTBOUND",
      "id": 123,
      "messageId": "<string>",
      "schema": "SEPA",
      "status": "PENDING",
      "type": "CLAIM_NON_RECEIPT",
      "claimNonReceiptDetails": {
        "additionalInfo": "<string>",
        "caseId": "<string>"
      },
      "delivery": {
        "status": "<string>",
        "statusReason": "<string>"
      },
      "referencedTransactionId": 123,
      "resolution": {
        "confirmationCode": "ACNR",
        "messageId": "<string>",
        "rejectionReasonCode": "<string>",
        "settlementDate": "2023-12-25"
      },
      "statusHistory": [
        {
          "createdAt": "2023-11-07T05:31:56Z",
          "createdBy": "<string>",
          "statusTo": "PENDING",
          "changeReason": "<string>",
          "statusFrom": "PENDING"
        }
      ],
      "transactionDetails": {
        "amount": 123,
        "currencyCode": "<string>",
        "endToEndId": "<string>",
        "method": "SEPA",
        "settlementDate": "2023-12-25",
        "creditorBic": "<string>",
        "creditorIban": "<string>",
        "creditorName": "<string>",
        "debtorBic": "<string>",
        "debtorIban": "<string>",
        "debtorName": "<string>",
        "remittanceInfo": "<string>"
      },
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "nextPageToken": "<string>",
    "previousPageToken": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.finventi.com/llms.txt

Use this file to discover all available pages before exploring further.

This API is in preview and subject to change.

Query Parameters

limit
string

A limit on the number of objects returned per page. The default is 10 items.

nextPageToken
string

Cursor token for fetching the next page of results.

previousPageToken
string

Cursor token for fetching the previous page of results.

referencedTransactionId
string

Filter by referenced transaction ID

status
string

Filter by investigation status (supports multiple values)

direction
string

Filter by direction (INBOUND, OUTBOUND)

type
string

Filter by investigation type (CLAIM_NON_RECEIPT, PAYMENT_STATUS_REQUEST)

caseId
string

Filter by case ID (exact match)

Response

Returned paginated investigations

data
object[]
required

List of investigations

meta
object
required

Pagination metadata

Last modified on March 19, 2026