API Docs / Operations / Client - MTD Reliefs / Save Investment Reliefs

Save Investment Reliefs

PUT /tenants/{tenant}/clients/{client}/mtd/reliefs/{taxYear}/investment

Sends the year's venture capital trust, EIS, SEIS and community investment subscriptions to HMRC. A full replacement — every subscription that should survive must be in the request, so editing one means sending them all back. Clearing the year is a delete rather than an empty save.

Parameters

NameTypeDescription
tenant* path string

The Tenant.Code

The Tenant.Code

client* path string
taxYear* path string
{
  "vctSubscription": [
    {
      "uniqueInvestmentRef": "...",
      "name": "...",
      "knowledgeIntensive": "...",
      "dateOfInvestment": "...",
      "amountInvested": "..."
    }
  ],
  "eisSubscription": [
    {
      "uniqueInvestmentRef": "...",
      "name": "...",
      "knowledgeIntensive": "...",
      "dateOfInvestment": "...",
      "amountInvested": "..."
    }
  ],
  "communityInvestment": [
    {
      "uniqueInvestmentRef": "...",
      "name": "...",
      "knowledgeIntensive": "...",
      "dateOfInvestment": "...",
      "amountInvested": "..."
    }
  ],
  "seedEnterpriseInvestment": [
    {
      "uniqueInvestmentRef": "...",
      "name": "...",
      "knowledgeIntensive": "...",
      "dateOfInvestment": "...",
      "amountInvested": "..."
    }
  ],
  "socialEnterpriseInvestment": [
    {
      "uniqueInvestmentRef": "...",
      "name": "...",
      "knowledgeIntensive": "...",
      "dateOfInvestment": "...",
      "amountInvested": "..."
    }
  ]
}

Responses

400 Bad Request
401 Unauthorized – Invalid or missing API key
404 Not Found