Fetch a cadence
GET/v2/cadences/:id
Fetches a cadence, by ID only.
Request
Path Parameters
Cadence ID
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
- Array [
- ]
ID of cadence
Datetime of when the cadence was created
Datetime of when the cadence was last updated
Datetime of when the cadence was archived, if archived
Date of when the cadence was last used
Whether this cadence is a team cadence. A team cadence is created by an admin and can be run by all users
Whether this cadence is visible to team members (shared)
Whether this cadence is archived
Whether this cadence is configured to automatically remove people who have bounced
Whether this cadence is configured to automatically remove people who have replied
Whether this cadence is configured to include an opt-out link by default
Whether this cadence is in draft mode
Whether this cadence is an Operational Cadence. An operational cadence is only created by an admin and accounts with the correct permission
ID of the cadence framework used to create steps for the cadence
Name or email of the user who archived the cadence
The use case of the cadence. Possible values are:
outbound: Denotes an outbound cadence, typically for sales purposes
inbound: Denotes an inbound sales cadence
event: Denotes a cadence used for an upcoming event
other: Denotes a cadence outside of the standard process
Cadence name
Cadence External ID
All tags applied to this cadence
The state of the Cadence. Read Only. Valid states are: draft, active, archived, expired, deleted
creator object
User that created this cadence
owner object
User that is marked as the owner of this cadence
bounced_stage object
Stage set when person on cadence bounces
replied_stage object
Stage set when person on cadence replies
added_stage object
Stage set when person is added to cadence
finished_stage object
Stage set when person is finished with cadence
cadence_priority object
Priority of the cadence
groups object[]
Groups to which this cadence is assigned, if any
counts object
The number of people that have ever been added to the cadence
The number of people that have been skipped, scheduled, or advanced in a cadence
The user defined target for number of people to add to the cadence each day
The number of opportunities created and attributed to the cadence
The number of meetings booked and attributed to the cadence
{
"id": 1,
"created_at": "2024-01-01T00:00:00.000000+00:00",
"updated_at": "2024-01-01T00:00:00.000000+00:00",
"archived_at": "2024-01-01T00:00:00.000000+00:00",
"latest_active_date": "2025-01-01",
"team_cadence": false,
"shared": false,
"archived": false,
"remove_bounces_enabled": true,
"remove_replies_enabled": true,
"opt_out_link_included": true,
"draft": false,
"override_contact_restrictions": false,
"cadence_framework_id": 1,
"archived_by": "John",
"cadence_function": "outbound",
"name": "Prospecting - VP of Sales",
"external_identifier": "This is my external id",
"tags": [
"7-23-2017",
"dreamforce"
],
"current_state": "active",
"creator": {
"id": 1,
"_href": "https://api.salesloft.com/v2/users/1"
},
"owner": {
"id": 1,
"_href": "https://api.salesloft.com/v2/users/1"
},
"bounced_stage": {
"id": 1,
"_href": "https://api.salesloft.com/v2/person_stages/1"
},
"replied_stage": {
"id": 2,
"_href": "https://api.salesloft.com/v2/person_stages/2"
},
"added_stage": {
"id": 3,
"_href": "https://api.salesloft.com/v2/person_stages/3"
},
"finished_stage": {
"id": 3,
"_href": "https://api.salesloft.com/v2/person_stages/3"
},
"cadence_priority": {
"id": 2,
"_href": "https://api.salesloft.com/v2/cadence_priorities"
},
"groups": [
{
"id": 921,
"_href": "https://api.salesloft.com/v2/groups/921"
}
],
"counts": {
"cadence_people": 59,
"people_acted_on_count": 1,
"target_daily_people": 10,
"opportunities_created": 10,
"meetings_booked": 10
}
}