Update group attributes
State
Update group attributes
Merge key-value pairs into the group’s attributes.
PATCH
Update group attributes
Merges a set of key-value attributes onto a group. Existing keys included in the request are overwritten with the new values. New keys are added. Keys not mentioned in the request body are left unchanged. This is a partial update. To remove an attribute entirely, use the remove attribute endpoint. Attribute values are strings. They are available in rule conditions via CEL.Documentation Index
Fetch the complete documentation index at: https://docs.scrip.dev/llms.txt
Use this file to discover all available pages before exploring further.
For usage patterns and examples, see the State Management guide.
Authorizations
API key passed in the X-API-Key header.
Path Parameters
Group ID
Body
application/json
Attributes to merge
Key-value pairs to merge into existing attributes
Example:
{ "plan": "premium", "region": "us-east" }Response
Merged attributes
Key-value attributes
Example:
{ "plan": "premium", "region": "us-east" }