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": "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

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