Skip to main content
POST
/
views
/
create
Create a view
curl --request POST \
  --url https://api.supersonic.cv/views/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "object_type_slug": "<string>",
  "view_type": "<string>",
  "config": {},
  "list_id": "<string>",
  "slug": "<string>",
  "is_default": true,
  "order": 123
}
'
{}

Authorizations

Authorization
string
header
required

API key: supersonic_live_...

Body

application/json
name
string
required

View name

object_type_slug
string
required

ObjectType slug

view_type
string

View type (default: list)

config
object

View config (filters, sorts, columns, grouping)

list_id
string

Optional List UUID to scope the view

slug
string
is_default
boolean
order
integer

Response

Success

The response is of type object.