DocsAPIInvestments

Delete investment

Deletes an investment, whatever instrument it was made through. Investments other records still point at – a cap table imported against it, for instance – are kept rather than cascaded away.

DELETE
/investments/{id}
Path

Investment ID

Example: 1

Path Parameters

idRequiredstring

Investment ID

Pattern: "^\\d+$"

Credentials

Bearer
curl -X DELETE "https://api.fundra.com/v1/investments/1" \
  -H "Authorization: Bearer <token>"

Investment deleted

{
  "success": true,
  "id": "1"
}