How to use Cadence Imports
The Cadence Import and Export resources can be used to create and export Salesloft cadences via the public API. The endpoints below will allow API users to create cadences with or without steps. The endpoint also supports adding steps to cadences without them.
Best Practice: Create a cadence in-app and export it using the export endpoint. Your exported JSON, along with the documentation below will allow you to better understand the cadence structure before you create new cadences via the import endpoint.
POST /v2/cadence_imports
Creates a Cadence Import object or adds Steps to an existing cadence which does not have previous steps.
To create a new cadence with steps, begin with the following:
{
"settings": {},
"sharing_settings": {},
"cadence_content": {
"step_groups": [
{
"steps": [
{
"type_settings": {}
}
]
}
]
}
}
Response Schema
_href (string)
URL of the cadence that was updated or created
id (integer)
id of the cadence that was created or updated
Response Sample
201 Created
{
"data": {
"cadence": {
"_href": "https://api.salesloft.com/v2/cadences/1",
"id": 1
}
}
}