# Get a single Scheduled Transfer Returns the details of the scheduled transfer specified in the request URL. Endpoint: GET /v1/accounts/{account_id}/scheduled_transfers/{id} Version: 1.0 ## Path parameters: - `id` (string, required) The ID of the scheduled transfer to retrieve. - `account_id` (string, required) The account ID of the account that the scheduled transfer is associated with. ## Response 200 fields (application/json): - `id` (string) Unique ID of the scheduled transfer. Example: "f874b3102718a4d757a6b6e4d599607csctr" - `account_id` (string) The account ID of the account that the scheduled transfer is associated with. Example: "236f9042a19b65c0867e10c922b93502cacc" - `status` (string) The status of the scheduled transfer. Enum: "AUTHORIZATION_REQUIRED", "ACTIVE", "CANCELED", "CONCLUDED" - `transfer_type` (string) The type of the scheduled transfer. Enum: "SCT", "SCT_INSTANT" - `creditor_iban` (string) The recipient's IBAN. Example: "DE87110101001000057123" - `creditor_name` (string) The recipient's name. Example: "Hans Mustermann" - `creditor_bic` (string) The recipient's BIC. Example: "COBADEFFXXX" - `initiator_reference` (string) Reference provided by the transaction initiator. It needs to be unique for the initiator. Example: "dsf2r3raedfs3fsf342fctrx" - `amount` (object) The amount of the scheduled transfer transaction (in Euro cents). - `amount.value` (integer) Amount described in smallest currency unit (e.g. cents). Example: 1000 - `amount.currency` (string) The currency of the given value. Only EUR is currently supported. Example: "EUR" - `description` (string) Optional description for the transaction, which will be visible to the recipient. Limited to 140 characters. - `active_from` (string) The date on which the scheduled transfer will become active. The first transfer will be executed on this date. Example: "2025-09-01" - `active_to` (string) The date by which the scheduled transfer will become concluded. The last transfer will be executed before or on this date. For one-time transfers this field will default to the active_from date. Example: "2026-09-01" - `execution_schedule` (string) The frequency at which to execute the scheduled transfer. Enum: "WEEKLY", "EVERY_TWO_WEEKS", "MONTHLY", "QUARTERLY", "EVERY_SIX_MONTHS", "ANNUALLY", "ONE-TIME" - `end_to_end_id` (string) SEPA identifier provided by the transaction initiator, which will be routed throughout the whole payment process. Example: "END2ENDREJ" - `next_execution_date` (string) Next execution_schedule for this scheduled transfer Example: "2025-10-01" - `authorizer_id` (string) The ID of the person who authorized the scheduled transfer. Example: "cf67beb032b2abbfc444f1641fa669bccper" - `verification_of_payee_id` (string) The ID of the verification of payee process that was used to verify the recipient's name and IBAN. Example: "f874b3102718a4d757a6b6e4d599607cvope" - `created_at` (string) UTC timestamp from the time the scheduled transfer was created. Example: "2022-04-21T13:59:52+00:00" - `updated_at` (string) UTC timestamp from the last time the scheduled transfer was updated. Example: "2022-04-21T13:59:52+00:00" ## Response 403 fields (application/json): - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `status` (string) Example: "403" - `code` (string) Example: "unauthorized_action" - `title` (string) Example: "Unauthorized Action" - `detail` (string) Example: "Unauthorized action is not allowed." ## Response 404 fields (application/json): - `id` (string) Example: "a95f2aaf-4e0c-4d49-8021-8a16a884ed86" - `status` (string) Example: "404" - `code` (string) Example: "model_not_found" - `title` (string) Example: "Model Not Found" - `detail` (string) Example: "Couldn't find 'Solaris::Identification' for id 'bbbcccfff388923eb899a5852df6cidt'." ## Response 500 fields (application/json): - `id` (string) Example: "e8915041-9d8c-4d96-9dd1-04e8522ecdbf" - `status` (string) Example: "500" - `code` (string) Example: "generic_error" - `title` (string) Example: "Generic Error" - `detail` (string) Example: "There was an error."