DocsAPIFunding rounds

Delete funding round

Deletes a funding round. Rounds that investments or cap tables still point at are kept, so a single call cannot take a company's history with it – detach those records first.

DELETE
/funding-rounds/{id}
Path

Funding round ID

Example: 5

Path Parameters

idRequiredstring

Funding round ID

Pattern: "^\\d+$"

Credentials

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

Funding round deleted

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