Skip to main content
PATCH
/
funds
/
{fundPublicId}
/
companies
/
{organizationPublicId}
/
status
Update portfolio company status
curl --request PATCH \
  --url https://app.concretehq.com/api/v1/funds/{fundPublicId}/companies/{organizationPublicId}/status \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "status": "active"
}
'
{
  "error": "Not found"
}

Authorizations

Authorization
string
header
required

API key authentication using Bearer token format

Path Parameters

fundPublicId
string
required

Fund public ID

organizationPublicId
string
required

Company public ID

Body

application/json
status
enum<string>
required

New status for the company within the fund's portfolio

Available options:
active,
exited,
dissolved
Example:

"active"

Response

Status updated successfully