---
title: "Get a single Scheduled Transfer"
method: GET
path: "/v1/accounts/{account_id}/scheduled_transfers/{id}"
tags: ["Scheduled Transfers"]
---

# Get a single Scheduled Transfer

`GET /v1/accounts/{account_id}/scheduled_transfers/{id}`

Returns the details of the scheduled transfer specified in the request URL.

## Path parameters

- `id` string, required
- `account_id` string, required

## Response `200`

Scheduled transfer successfully retrieved.

- ScheduledTransfer
  - `id` string — Unique ID of the scheduled transfer.
  - `account_id` string — The account ID of the account that the scheduled transfer is associated with.
  - `status` 'AUTHORIZATION_REQUIRED' | 'ACTIVE' | 'CANCELED' | 'CONCLUDED' — The status of the scheduled transfer.
  - `transfer_type` 'SCT' | 'SCT_INSTANT' — The type of the scheduled transfer.
  - `creditor_iban` string — The recipient's IBAN.
  - `creditor_name` string — The recipient's name.
  - `creditor_bic` string — The recipient's BIC.
  - `initiator_reference` string — Reference provided by the transaction initiator. It needs to be unique for the initiator.
  - `amount` Money
    - `value` integer — Amount described in smallest currency unit (e.g. cents).
    - `currency` string — The currency of the given value. Only EUR is currently supported.
  - `description` string — Optional description for the transaction, which will be visible to the recipient. Limited to 140 characters.
  - `active_from` string, date — The date on which the scheduled transfer will become active. The first transfer will be executed on this date.
  - `active_to` string, date — 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.
  - `execution_schedule` 'WEEKLY' | 'EVERY_TWO_WEEKS' | 'MONTHLY' | 'QUARTERLY' | 'EVERY_SIX_MONTHS' | 'ANNUALLY' | 'ONE-TIME' — The frequency at which to execute the scheduled transfer.
  - `end_to_end_id` string — SEPA identifier provided by the transaction initiator, which will be routed throughout the whole payment process.
  - `next_execution_date` string, date — Next execution_schedule for this scheduled transfer
  - `authorizer_id` string — The ID of the person who authorized the scheduled transfer.
  - `verification_of_payee_id` string — The ID of the verification of payee process that was used to verify the recipient's name and IBAN.
  - `created_at` string, date-time — UTC timestamp from the time the scheduled transfer was created.
  - `updated_at` string, date-time — UTC timestamp from the last time the scheduled transfer was updated.

## Other responses

- `403` — You are not authorized to perform this action.
- `404` — The resource could not be found.
- `500` — Internal server error.

---

[API](https://skmtc.net/solarisgroup/apis/sepa-transfers.md) · [All operations](https://skmtc.net/solarisgroup/apis/sepa-transfers/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/solarisgroup/sepa-transfers/revisions/f1fef352d976/schema)
