Skip to main content
POST
/
lists
/
add_field
Add a field to a list
curl --request POST \
  --url https://api.supersonic.cv/lists/add_field \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "list_id": "<string>",
  "name": "<string>",
  "field_type": "<string>",
  "slug": "<string>",
  "config": {},
  "required": true,
  "order": 123
}
'
{}

Authorizations

Authorization
string
header
required

API key: supersonic_live_...

Body

application/json
list_id
string
required

List UUID

name
string
required

Field display name

field_type
string

Field type (default: text)

slug
string
config
object

Field config (e.g. select options)

required
boolean
order
integer

Response

Success

The response is of type object.