Reference accounts

Index rejected incoming transactions

Returns an array containing all incoming transactions to the account specified in the request URL that Solaris rejected/returned.

get/v1/accounts/{account_id}/rejected_incoming_transactions

Path parameters

account_idstring required

Query parameters

page[number]integer

The number of results pages to return.

page[size]integer

The size of each page of results.

Response

The operation was successful.

idstring

ID of the rejected transaction.

sender_namestring

The name of the person who sent the funds.

sender_ibanstring

IBAN of the account from which the funds were sent.

rejection_reasonstring

The reason why Solaris rejected the transaction.

rejected_atstring

UTC timestamp from when Solaris rejected the transaction.

Example response

[
  {
    "id": "95d06bc4e448af0d78259549964e4b4bsddm",
    "sender_name": "John Mustermann",
    "sender_iban": "DE32110101001000000029",
    "rejection_reason": "Transaction sender name and account debtor name do not match.",
    "rejected_at": "2022-08-18T08:36:55Z"
  }
]