# Index transfer requests for an account Returns an array containing all transfer requests associated with the account specified in the request URL. Endpoint: GET /v1/accounts/{account_id}/transfer_requests Version: 1.0 ## Path parameters: - `account_id` (string, required) ## Query parameters: - `filter[resolved]` (boolean) Use this filter to return only resolved transfers. - `filter[reference]` (string) Filter the response by the property. - `filter[reservation_id]` (string) Filter the response by the reservation ID associated with the transfer request. ## Response 200 fields (application/json): - `id` (string) Unique ID of the transfer request. Example: "d3441a66f78e6290cdeebc4c1689a4aetreq" - `reservation_id` (string) Unique ID of the reservation associated with the transfer request. Example: "88cedf447b2c43828ded233733d1cc54" - `amount` (object) The amount of the transfer request. Example: {"amount":1000,"unit":"cents","currency":"EUR"} - `amount.value` (integer) The amount, in Euro cents. - `amount.unit` (string) The unit of the amount. Example: "cents" - `amount.currency` (string) The currency of the transfer request. Only EUR is supported. Enum: "EUR" - `reference` (string) A unique reference for the transfer request. Used as an idempotency key. Example: "e8eabf80-095f-4d6a-947a-4ca1455cc378" - `description` (string) The description of the transfer request. Example: "Example description" - `resolved` (boolean) Indicates whether the transfer request was resolved. ## Response 403 fields (application/json): - `errors` (array) - `errors.id` (string) - `errors.status` (integer) - `errors.code` (string) - `errors.title` (string) - `errors.detail` (string) ## Response 404 fields (application/json): - `errors` (array) - `errors.id` (string) - `errors.status` (integer) - `errors.code` (string) - `errors.title` (string) - `errors.detail` (string) ## Response 500 fields (application/json): - `errors` (array) - `errors.id` (string) - `errors.status` (integer) - `errors.code` (string) - `errors.title` (string) - `errors.detail` (string)