Skip to main content
POST
/
lists
/
create
Create a list with optional fields
curl --request POST \
  --url https://api.supersonic.cv/lists/create \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "object_type_slug": "<string>",
  "slug": "<string>",
  "fields": [
    {
      "name": "<string>",
      "field_type": "<string>",
      "config": {}
    }
  ]
}
'
{}

Authorizations

Authorization
string
header
required

API key: supersonic_live_...

Body

application/json
name
string
required

List/pipeline name

object_type_slug
string
required

ObjectType slug this list belongs to

slug
string

URL-safe slug (auto-generated if omitted)

fields
object[]

Initial fields for the list

Response

Success

The response is of type object.