Create the Deals object type
Define the object type with the fields you need: deal name, value, and company.The response includes the object type ID and slug. You’ll use
"deals" as the object_type_slug in subsequent calls.Create the pipeline list
A pipeline in Supersonic is a list with a stage field. Create it with the stages you want.Save the
list_id from the response. You’ll need it to add entries.Create some deals
Add a few deal records to the Deals object type.Each call returns the record with its
id. Note those IDs for the next step.Add deals to the pipeline
Place each deal into the pipeline at a specific stage.Replace
LIST_ID and RECORD_ID_* with the actual IDs from previous steps.View the pipeline
Fetch all entries grouped by stage.The response returns every entry with its record data and stage value. In the Supersonic UI, this renders as a Kanban board.
Rate limit is 1,000 API calls per minute. For bulk operations, see Import contacts from CSV.