Skip to main content
GET
/
api
/
v1
/
views
/
{view_id}
Get View
curl --request GET \
  --url https://api.openfunnel.dev/api/v1/views/{view_id} \
  --header 'X-API-Key: <x-api-key>'
{
  "view": {
    "id": "<string>",
    "user_id": "<string>",
    "name": "<string>",
    "filters": {},
    "is_default": false,
    "action_config": {},
    "last_notified_insight_id": 123,
    "last_notification_at": "<string>",
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

Headers

X-API-Key
string
required

Path Parameters

view_id
string
required

The view's ID (returned by the create and list endpoints)

Response

Successful Response

Response for the get view endpoint. Never carries the webhook secret.

view
SavedViewItem · object
required

Single saved view owned by a user.