# Index rejected incoming transactions Returns an array containing all incoming transactions to the account specified in the request URL that Solaris rejected/returned. Endpoint: GET /v1/accounts/{account_id}/rejected_incoming_transactions Version: 1.0 ## Path parameters: - `account_id` (string, required) ## Query parameters: - `page[number]` (integer) The number of results pages to return. - `page[size]` (integer) The size of each page of results. ## Response 200 fields (application/json): - `id` (string) ID of the rejected transaction. Example: "95d06bc4e448af0d78259549964e4b4bsddm" - `sender_name` (string) The name of the person who sent the funds. Example: "John Mustermann" - `sender_iban` (string) IBAN of the account from which the funds were sent. Example: "DE32110101001000000029" - `amount` (object) The amount of the transaction. Example: {"value":10000,"unit":"cents","currency":"EUR"} - `amount.value` (integer) The amount of the transaction, in Euro cents. Example: 10000 - `amount.currency` (string) The currency of the transaction. Enum: "EUR" - `amount.unit` (string) The unit of the transaction. Example: "cents" - `rejection_reason` (string) The reason why Solaris rejected the transaction. Example: "Transaction sender name and account debtor name do not match." - `rejected_at` (string) UTC timestamp from when Solaris rejected the transaction. Example: "2022-08-18T08:36:55Z" ## Response 400 fields (application/json): - `errors` (array, required) - `errors.id` (string) Error identifier - `errors.status` (integer) Error status - `errors.code` (string) Error code - `errors.title` (string) Error title - `errors.detail` (string) Error detail ## Response 403 fields (application/json): - `errors` (array, required) Example: [{"id":"7aaf4dfb-b7cd-4a50-a1d2-fad0e19624ef","status":403,"code":"unauthorized_action","title":"Unauthorized Action","detail":"Unauthorized action is not allowed."}] - `errors.id` (string) Error identifier - `errors.status` (integer) Error status - `errors.code` (string) Error code - `errors.title` (string) Error title - `errors.detail` (string) Error detail ## Response 404 fields (application/json): - `errors` (array, required) Example: [{"id":"93537ebd-c038-4a56-aa1b-17e540f57c3a","status":404,"code":"model_not_found","title":"Model Not Found","detail":"Couldn't find 'Solaris::Account' for id."}] - `errors.id` (string) Error identifier - `errors.status` (integer) Error status - `errors.code` (string) Error code - `errors.title` (string) Error title - `errors.detail` (string) Error detail ## Response 500 fields (application/json): - `errors` (array, required) Example: [{"id":"b5a79a32-fc0c-4326-aed4-a7e76d565f86","status":500,"code":"generic_error","title":"Generic Error","detail":"There was an error."}] - `errors.id` (string) Error identifier - `errors.status` (integer) Error status - `errors.code` (string) Error code - `errors.title` (string) Error title - `errors.detail` (string) Error detail