Docs
Update View
PUT /views/{viewId}
PUT
/views/{viewId}Required Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <api-key> | Optional | Your API key. Pass it as the Bearer token on every request. |
Updates a saved view's name, sort order, default flag, and configuration. Note that entityId and tableId are not updatable — delete and recreate the view to change those.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| viewId | Guid | Required | The ID of the view to update. Replace `{{viewId}}` in the URL. |
Request Body
| Field | Type | Required | Description |
|---|---|---|---|
| name | string | Required | New display name. |
| index | int | Required | Updated sort position. |
| isDefault | bool | Required | Whether this should become the default view for the table. |
| configuration | string | Required | Updated serialized configuration as a JSON string. |
Response
Returns 200 OK with an empty body on success.