Set Organization Property Value
Sets the value of an organization property. If the property already has a value, it will be replaced with the new value.
Note: The value must be provided as a string, regardless of the property type:
- Text/URL properties: Plain string value
- Number properties: Numeric value as string (e.g., “100”)
- Date properties: ISO 8601 date string (e.g., “2024-01-15”)
- Dropdown properties: The exact label of one of the defined options
Request
PUT /v2/organizations/123/properties/customer-tier HTTP/1.1
Authorization: Bearer oauth_token
Content-Type: application/json
{
"value" : "Acme Corporation"
}
Path Parameters
/v2/organizations/{organizationId}/properties/{slug}
Request fields
| Path | Type | Required | Description |
|---|---|---|---|
value |
String |
Y | The property value as a string. Different property types accept different formats: text/url (plain string), number (numeric string like ‘100’), date (ISO 8601 date like ‘2024-01-15’), dropdown (option label). |
Response
HTTP/1.1 204 No Content