SEPA Instant Outgoing

Index all SEPA Instant Credit Transfers for an account

Returns a list of all SEPA Instant Credit Transfers for the account specified in the request URL. You can filter the results by the creditor_iban, transaction status, etc.

get/v1/accounts/{account_id}/transactions/sepa_instant_credit_transfers

Path parameters

account_idstring required

The ID of the customer's account from which the SCT Instant will be transferred.

Query parameters

page[number]integer

The number of results pages to return.

page[size]integer

The size of each page in the response.

filter[status]'INITIATED' | 'RESERVED' | 'READY_FOR_CLEARING' | 'CLEARED'

The status of the transaction.

Filters the results by the transaction status.

filter[creditor_iban]string

Filters the results by the creditor IBAN.

Response

Successful result of the operation

idstring

The ID of the transaction.

creditor_ibanstring

The IBAN of the creditor account (i.e., the account holder receiving the money). The IBAN must be reachable via SCT Instant!

creditor_namestring

The name of the creditor (i.e., account holder).

descriptionstring

A description for the transaction given by the customer.

end_to_end_idstring

Your unique end-to-end ID for the transaction.

initiator_referencestring

Your unique reference for the transaction.

idempotency_keystring uuid

Your unique value generated for the transaction, which Solaris uses to recognize subsequent retries of the same request.

status'INITIATED' | 'RESERVED' | 'READY_FOR_CLEARING' | 'CLEARED'

The status of the transaction.

valuta_datestring date

The valuta date of the transaction.

Example response

[
  {
    "id": "e8308bd66d3472a987d262d05fb5098siot",
    "amount": {
      "value": 3000,
      "currency": "EUR"
    },
    "creditor_iban": "Lisa Herrmann",
    "creditor_name": "DE02500105170137075030",
    "description": "Geschenk",
    "end_to_end_id": "e2178fc8b9ad4a479e269a47f90b4a43",
    "initiator_reference": "2603037c-e264-46c4-82e8-0d3ebc23a30f",
    "idempotency_key": "7352a11b-011d-47a4-a449-17371078e98c",
    "status": "RESERVED",
    "valuta_date": "2022-04-22"
  }
]