List cadence memberships
GET/v2/cadence_memberships
Fetches multiple cadence membership records. The records can be filtered, paged, and sorted according to the respective parameters. A cadence membership is the association between a person and their current and historical time on a cadence. Cadence membership records are mutable and change over time. If a person is added to a cadence and re-added to the same cadence in the future, there is a single membership record.
Request
Query Parameters
IDs of cadence memberships to fetch. If a record can't be found, that record won't be returned and your request will be successful
ID of the person to find cadence memberships for
ID of the cadence to find cadence memberships for
Returns all matching records that are greater than the provided iso8601 timestamp. The comparison is done using microsecond precision.
Returns all matching records that are greater than or equal to the provided iso8601 timestamp. The comparison is done using microsecond precision.
Returns all matching records that are less than the provided iso8601 timestamp. The comparison is done using microsecond precision.
Returns all matching records that are less than or equal to the provided iso8601 timestamp. The comparison is done using microsecond precision.
If true, return only cadence memberships for people currently on cadences. If false, return cadence memberships for people who have been removed from or have completed a cadence.
Key to sort on, must be one of: added_at, updated_at. Defaults to updated_at
Direction to sort in, must be one of: ASC, DESC. Defaults to DESC
How many records to show per page in the range [1, 100]. Defaults to 25
The current page to fetch results from. Defaults to 1
Whether to include total_pages and total_count in the metadata. Defaults to false
Specifies whether the max limit of 10k records should be applied to pagination counts. Affects the total_count and total_pages data
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
Cadence membership ID
Datetime of when the person was last added to this cadence
Datetime of when the person was first added to this cadence
Datetime of when the record was last updated
Whether the associated person has since been deleted
Whether the person is currently on the cadence
The current state of the person on the cadence. Possible values are:
processing: The person is being processed on a cadence. Cadence-related changes cannot be made at this time
staged: The person is waiting for the first step in the cadence to occur
active: The cadence has begun processing this person and is still in the process, but idle
scheduled: The cadence has begun processing this person and is still in the process, with an activity scheduled to occur
completed: The cadence has been completed for this person
removed: The person was manually or automatically removed from the cadence
removed_no_action: The person was removed from the cadence before any action occurred
reassigned: The person's cadence execution was transferred to a different user, ending this user's interaction
archived: The cadence this person belonged to has been archived and all actions and people were archived with it
cadence object
The cadence that the person is on
person object
The person that is on the cadence
user object
The user that is acting on the person in the cadence
latest_action object
The most recent action associated with the record
counts object
The number of times emails sent from the cadence to the person were opened
The number of times emails sent from the cadence to the person were clicked
The number of times emails sent from the cadence to the person were replied to
The number of times a call was logged from the cadence to the person
The number of times emails were sent from the cadence to the person
The number of times emails sent from the cadence to the person bounced
{
"id": 1,
"added_at": "2024-01-01T00:00:00.000000+00:00",
"created_at": "2024-01-01T00:00:00.000000+00:00",
"updated_at": "2024-01-01T00:00:00.000000+00:00",
"person_deleted": false,
"currently_on_cadence": false,
"current_state": "staged",
"cadence": {
"id": 1,
"_href": "https://api.salesloft.com/v2/cadences/1"
},
"person": {
"id": 2,
"_href": "https://api.salesloft.com/v2/people/2"
},
"user": {
"id": 3,
"_href": "https://api.salesloft.com/v2/users/3"
},
"latest_action": {
"id": 4
},
"counts": {
"views": 10,
"clicks": 5,
"replies": 2,
"calls": 2,
"sent_emails": 4,
"bounces": 0
}
}