API Docs / Schemas / SetMtdPeriodsOfAccountRequest

SetMtdPeriodsOfAccountRequest

Declares whether a self-employment income source draws its accounts to periods other than the
tax year, and if so what those periods are.

A full replacement of the year's declaration, and HMRC require it before the tax return.

Properties

Name Type Description
hasPeriodsOfAccount*boolean

True when the business has periods of account other than the tax year. HMRC require
SodiumHQ.DTOs.MtdSubmissions.SetMtdPeriodsOfAccountRequest.Periods when this is true and require it to be absent when false — sending the
two out of step is refused.

True when the business has periods of account other than the tax year. HMRC require
SodiumHQ.DTOs.MtdSubmissions.SetMtdPeriodsOfAccountRequest.Periods when this is true and require it to be absent when false — sending the
two out of step is refused.

periodsarray of PeriodOfAccount

The periods themselves. Required when SodiumHQ.DTOs.MtdSubmissions.SetMtdPeriodsOfAccountRequest.HasPeriodsOfAccount is true.

The periods themselves. Required when SodiumHQ.DTOs.MtdSubmissions.SetMtdPeriodsOfAccountRequest.HasPeriodsOfAccount is true.

JSON Example

{
  "hasPeriodsOfAccount": false,
  "periods": [
    {
      "startDate": "...",
      "endDate": "..."
    }
  ]
}

Used By Operations