curl --request PATCH \
--url https://api.bedrock.cv/organizations/{organization_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Acme Construction LLC"
}
'{
"data": {
"id": "org_01JABCD123",
"name": "Acme Construction",
"owner_id": "usr_01JABCD123",
"require_mfa": false,
"created_at": "2024-01-10T08:00:00Z",
"updated_at": "2024-01-10T08:00:00Z"
}
}Update organization settings.
curl --request PATCH \
--url https://api.bedrock.cv/organizations/{organization_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "Acme Construction LLC"
}
'{
"data": {
"id": "org_01JABCD123",
"name": "Acme Construction",
"owner_id": "usr_01JABCD123",
"require_mfa": false,
"created_at": "2024-01-10T08:00:00Z",
"updated_at": "2024-01-10T08:00:00Z"
}
}API key prefixed with sk_. Example: Authorization: Bearer sk_xxx
API version
Organization ID
Success
Show child attributes
{
"id": "org_01JABCD123",
"name": "Acme Construction",
"owner_id": "usr_01JABCD123",
"require_mfa": false,
"created_at": "2024-01-10T08:00:00Z",
"updated_at": "2024-01-10T08:00:00Z"
}