Docs
Set Collaborator Property Value
PUT /organizations/{organizationId}/collaborator-records/{recordId}/properties/{propertyId}
PUT
/organizations/{organizationId}/collaborator-records/{recordId}/properties/{propertyId}Required Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
| Organization token | x-Organization-Token | Optional | Run **Authorize Organization** in the Authorization folder. |
Sets (or updates) the value of a property on a typed collaborator record. The record must have a type assigned, and the property must belong to that type.
For required properties, passing a null or empty value will return a validation error.
Requires CollaboratorDatabase.Edit permission.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| organizationId | Guid | Required | The organization the record belongs to. |
| recordId | Guid | Required | The record to update. |
| propertyId | Guid | Required | The property to set a value for. Must belong to the record's current type. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| value | string? | Optional | The value to store. For required properties, must not be null or empty. |