Fetch a saved list view
GET/v2/saved_list_views/:id
Fetches a saved list view, by ID only.
Request
Path Parameters
id stringrequired
Saved List View ID
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
id integer
ID of Ssaved list view
view string
Type of saved list view
name string
Name of saved list view
view_params object
List of set filters in saved list view
is_default boolean
Whether the saved list view is the default view
shared boolean
Whether the view is public to the team or not
{
"id": 1,
"view": "companies",
"name": "Tom's Prospects",
"view_params": {
"owner": "unowned",
"stage": "28865",
"unowned": true
},
"is_default": true,
"shared": false
}
Loading...