Skip to main content
POST
/
lists
/
bulk_add_entry
Add multiple records to a list in a single operation (max 100)
curl --request POST \
  --url https://api.supersonic.cv/lists/bulk_add_entry \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "list_id": "<string>",
  "entries": [
    {
      "record_id": "<string>",
      "data": {}
    }
  ]
}
'
{}

Authorizations

Authorization
string
header
required

API key: supersonic_live_...

Body

application/json
list_id
string
required

List UUID

entries
object[]
required

Array of entries to add (max 100)

Response

Success

The response is of type object.