Docs
Update Configuration Column
PUT /Activities/{activityId}/configuration/columns/{columnId}
PUT
/Activities/{activityId}/configuration/columns/{columnId}Required Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
| Event token | x-Event-Token | Optional | Run **Get Tokens** in the Authorization folder, or call `GET /Events/{eventId}/authorize` manually. |
Updates the name, display order, and size of an existing segment configuration column.
Requires EventAdmin permission on the event.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| activityId | Guid | Required | The ID of the activity. |
| columnId | Guid | Required | The ID of the column to update. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| name | string | Required | New display name for the column header. |
| index | int | Required | New zero-based position of the column in the table. Other columns are reordered automatically. |
| size | string | Required | Column width as a numeric string (e.g., `"150"`). Behaves like Excel column widths — set any positive integer to control the pixel width of the column in the segment table. |
Response
Returns 200 OK with no body on success.