Savings Goals

Get the recurring transfer of a savings goal

get/api/v2/account/{accountUid}/savings-goals/{savingsGoalUid}/recurring-transfer

Path parameters

accountUidstring uuid required
Example:aaaaaaaa-aaaa-4aaa-aaaa-aaaaaaaaaaaa

Account uid

savingsGoalUidstring uuid required
Example:aaaaaaaa-aaaa-4aaa-aaaa-aaaaaaaaaaaa

Savings goal uid

Response

Successful operation

transferUidstring uuid required

Unique identifier of the transfer

nextPaymentDatestring date required

The next date the payment will be made on

referencestring nullable

The reference on each transfer

Example response

{
  "transferUid": "88998899-8899-8899-8899-889988998899",
  "recurrenceRule": {
    "startDate": "2023-01-01",
    "interval": 2,
    "count": 10,
    "untilDate": "2023-01-01"
  },
  "currencyAndAmount": {
    "currency": "GBP",
    "minorUnits": 123456
  },
  "nextPaymentDate": "2023-01-01"
}