Skip to main content
POST
/
funds
/
{fundPublicId}
/
companies
Add companies to fund
curl --request POST \
  --url https://app.concretehq.com/api/v1/funds/{fundPublicId}/companies \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "companyPublicIds": [
    "abc123def456",
    "654fed321cba"
  ]
}
'
{
  "error": "invalid_request",
  "message": "The request was invalid or cannot be served"
}

Documentation Index

Fetch the complete documentation index at: https://docs.concretehq.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication using Bearer token format

Path Parameters

fundPublicId
string
required

Fund public ID

Body

application/json
companyPublicIds
string[]
required

Array of company public IDs

Required array length: 1 - 500 elements
Example:
["abc123def456", "654fed321cba"]

Response

Companies added to fund successfully