Docs
Get View
GET /views/{viewId}
GET
/views/{viewId}Required Tokens
| Field | Type | Required | Description |
|---|---|---|---|
| Bearer | Authorization: Bearer <token> | Optional | Your user token. |
| Organization token | x-Organization-Token | Optional | Run **Authorize Organization** in the Authorization folder. |
Returns a single view by ID, including its configuration.
Requesting another user's private view returns 404, indistinguishable from a view that does not
exist. The same is true of PUT and DELETE, so no verb confirms whether a given id belongs to
someone else.
Path Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| viewId | Guid | Required | The ID of the view to retrieve. |
Response
| Field | Type | Description |
|---|---|---|
| id | Guid | View ID. |
| name | string | Display name. |
| index | int | Sort order within its scope bucket. |
| entityId | Guid | The entity this view belongs to. |
| tableId | string | The table this view applies to. |
| isDefault | bool | Whether this is the default view for the table. |
| configuration | string | Serialized view configuration (JSON string). |
| isPrivate | bool | `true` when the view belongs privately to the calling user. |