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>",
      "id": 123,
      "messageId": "<string>",
      "claimNonReceiptDetails": {
        "caseId": "<string>",
        "reminders": [
          {
            "id": 123,
            "messageId": "<string>",
            "receivedAt": "2023-11-07T05:31:56Z"
          }
        ],
        "additionalInfo": "<string>"
      },
      "delivery": {
        "status": "<string>",
        "statusReason": "<string>"
      },
      "referencedTransactionId": 123,
      "resolution": {
        "messageId": "<string>",
        "rejectionReasonCode": "<string>",
        "settlementDate": "2023-12-25"
      },
      "statusHistory": [
        {
          "createdAt": "2023-11-07T05:31:56Z",
          "createdBy": "<string>",
          "changeReason": "<string>"
        }
      ],
      "transactionDetails": {
        "amount": 123,
        "currencyCode": "<string>",
        "endToEndId": "<string>",
        "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>"
  }
}
This API is in preview and subject to change.

Query Parameters

limit
integer<int32>
default:10

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

Required range: 1 <= x <= 100
nextPageToken
string

Cursor token for fetching the next page of results.

previousPageToken
string

Cursor token for fetching the previous page of results.

referencedTransactionId
integer<int64>

Filter by referenced transaction ID

status
enum<string>[]

Filter by investigation status (supports multiple values)

Filter by investigation status (supports multiple values)

Available options:
PENDING,
RESOLVED,
REJECTED
direction
enum<string>

Filter by direction (INBOUND, OUTBOUND)

Available options:
OUTBOUND,
INBOUND
type
enum<string>

Filter by investigation type (CLAIM_NON_RECEIPT, PAYMENT_STATUS_REQUEST) Investigation type: CLAIM_NON_RECEIPT (camt.027) or PAYMENT_STATUS_REQUEST (pacs.028)

Available options:
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