# Retrieve a transfer request Returns information about the transfer request specified in the request URL. Endpoint: GET /v1/accounts/{account_id}/transfer_requests/{transfer_request_id} Version: 1.0 ## Path parameters: - `account_id` (string, required) - `transfer_request_id` (string, required) ## 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 400 fields (application/json): - `errors` (array) - `errors.id` (string) - `errors.status` (integer) - `errors.code` (string) - `errors.title` (string) - `errors.detail` (string) ## 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)