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 |
|---|---|---|
| securities | SecuritiesIncome | |
| foreignInterest | array 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": "..."
}
]
}