# 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 , transaction , etc. Endpoint: GET /v1/accounts/{account_id}/transactions/sepa_instant_credit_transfers Version: 1.0 ## Path parameters: - `account_id` (string, 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]` (string) Filters the results by the transaction status. Enum: "INITIATED", "RESERVED", "READY_FOR_CLEARING", "CLEARED" - `filter[creditor_iban]` (string) Filters the results by the creditor IBAN. ## Response 200 fields (application/json): - `id` (string) The ID of the transaction. Example: "e8308bd66d3472a987d262d05fb5098siot" - `amount` (object) The transaction amount. Example: {"value":3000,"currency":"EUR"} - `amount.value` (integer) The amount value in cents. Example: 3000 - `amount.currency` (string) The currency of the given value. Only EUR is currently supported. Example: "EUR" - `creditor_iban` (string) The IBAN of the creditor account (i.e., the account holder receiving the money). The IBAN must be reachable via SCT Instant! Example: "Lisa Herrmann" - `creditor_name` (string) The name of the creditor (i.e., account holder). Example: "DE02500105170137075030" - `description` (string) A description for the transaction given by the customer. Example: "Geschenk" - `end_to_end_id` (string) Your unique end-to-end ID for the transaction. Example: "e2178fc8b9ad4a479e269a47f90b4a43" - `initiator_reference` (string) Your unique reference for the transaction. Example: "2603037c-e264-46c4-82e8-0d3ebc23a30f" - `idempotency_key` (string) Your unique value generated for the transaction, which Solaris uses to recognize subsequent retries of the same request. Example: "7352a11b-011d-47a4-a449-17371078e98c" - `status` (string) The status of the transaction. Enum: "INITIATED", "RESERVED", "READY_FOR_CLEARING", "CLEARED" - `valuta_date` (string) The valuta date of the transaction. Example: "2022-04-22" ## Response 400 fields (application/json): - `errors` (array) - `errors.id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `errors.code` (string) Example: "invalid_request" - `errors.title` (string) Example: "Invalid Request" - `errors.details` (string) Example: "Request is invalid" ## Response 403 fields (application/json): - `errors` (array) - `errors.id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `errors.code` (string) Example: "unauthorized_action" - `errors.title` (string) Example: "Unauthorized Action" - `errors.details` (string) Example: "Unauthorized action is not allowed." ## Response 404 fields (application/json): - `errors` (array) - `errors.id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `errors.code` (string) Example: "model_not_found" - `errors.title` (string) Example: "Model Not Found" - `errors.details` (string) Example: "Model was not found" ## Response 500 fields (application/json): - `errors` (array) - `errors.id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `errors.code` (string) Example: "generic_error" - `errors.title` (string) Example: "Internal Server Error" - `errors.details` (string) Example: "Internal server error occurred"