# Index trusted IBANs for an account Returns an array containing all IBANs added to the given account as trusted IBANs. Endpoint: GET /v1/accounts/{account_id}/trusted_ibans Version: 1.0 ## Path parameters: - `account_id` (string, required) ## Query parameters: - `filter[approved_by]` (string) Filter the results by the person who approved the trusted IBAN creation requests. - `filter[iban]` (string) Filter the results by IBAN. - `sort` (string) Sort the results by the date and time when the trusted IBAN was created. Example: "created_at" - `page[size]` (integer) Specifies the number of entries to return on each page. - `page[number]` (integer) Specifies the number of pages of results to return. ## Response 200 fields (application/json): - `id` (string) - `iban` (string) - `approved_by` (string) ## Response 400 fields (application/json): - `errors` (array, required) Example: [{"id":"b805c37f-75e9-4445-974c-12d28e7584ee","status":400,"code":"invalid_json","title":"Invalid JSON","detail":"The provided JSON was not properly formatted."}] - `errors.id` (string) A unique identifier for this error message. Example: "b805c37f-75e9-4445-974c-12d28e7584ee" - `errors.status` (integer) The HTTP status code of the response (typically in the range 4xx–5xx). Example: 400 - `errors.code` (string) A machine-readable representation of the error type. Example: "invalid_json" - `errors.title` (string) The human-readable name of the error type. Example: "Invalid JSON" - `errors.detail` (string) A human-readable description of the error. Example: "The provided JSON was not properly formatted." ## Response 500 fields (application/json): - `errors` (array, required) Example: [{"id":"b805c37f-75e9-4445-974c-12d28e7584ee","status":500,"code":"generic_error","title":"Generic Error","detail":"There was an error."}] - `errors.id` (string) A unique identifier for this error message. Example: "b805c37f-75e9-4445-974c-12d28e7584ee" - `errors.status` (integer) The HTTP status code of the response (typically in the range 4xx–5xx). Example: 400 - `errors.code` (string) A machine-readable representation of the error type. Example: "invalid_json" - `errors.title` (string) The human-readable name of the error type. Example: "Invalid JSON" - `errors.detail` (string) A human-readable description of the error. Example: "The provided JSON was not properly formatted."