DELETE
/
funds
/
{fundPublicId}
/
companies
Remove companies from fund
curl --request DELETE \
  --url https://app.concretehq.com/api/v1/funds/{fundPublicId}/companies \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "companyPublicIds": [
    "abc123def456",
    "654fed321cba"
  ]
}'
This response does not have an example.

Authorizations

Authorization
string
header
required

API key authentication using Bearer token format

Path Parameters

fundPublicId
string
required

Fund public ID

Body

application/json

Response

204

Companies removed from fund successfully