API Docs / Schemas / SaveMtdOtherSavingsRequest

SaveMtdOtherSavingsRequest

Saves the year's other savings income — securities interest and foreign interest — at HMRC.

A full replacement: everything that should survive must be present, because
what is absent is cleared. Clearing the year is a delete, not an empty save.

Properties

Name Type Description
securitiesSecuritiesIncome
foreignInterestarray of ForeignInterestItem

Interest from foreign savings. HMRC require a country code and taxable amount on every item.

Interest from foreign savings. HMRC require a country code and taxable amount on every item.

JSON Example

{
  "securities": {
    "taxTakenOff": 0,
    "grossAmount": 0,
    "netAmount": 0
  },
  "foreignInterest": [
    {
      "countryCode": "...",
      "amountBeforeTax": "...",
      "taxTakenOff": "...",
      "specialWithholdingTax": "...",
      "foreignTaxCreditRelief": "..."
    }
  ]
}

Used By Operations