Docs
Add Configuration Column
POST /Activities/{activityId}/configuration/columns
POST
/Activities/{activityId}/configuration/columnsRequired 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. |
Adds a new column to the run-of-show segment configuration for the specified activity. Columns appear as headers in the activity's segment table and can store per-segment data. The new column is appended at the end of the existing column list.
Requires EventAdmin permission on the event.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| activityId | Guid | Required | The ID of the activity to add a column to. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| name | string | Required | Display name for the column header. |
| 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.