List crm activities
GET/v2/crm_activities
Fetches multiple crm activity records. The records can be filtered, paged, and sorted according to the respective parameters.
Request
Query Parameters
IDs of crm activities to fetch.
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.
Key to sort on, must be one of: created_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
CrmActivity ID
Datetime of when the crm activity was created
Datetime of when the crm activity was last updated
The subject field of the activity in your CRM
The description field of the activity in your CRM
The ID of the activity in your CRM, if written to your CRM
The type of activity that is being recorded, if available. The values can change over time, but could be one of: email, phone, email reminder, inmail
Information about why this crm activity failed to sync, if it did fail to sync. Failed activities will be automatically retried and may become successful in the future
Additional fields that are logged to your CRM, if mapped by the team at the time of writing to your CRM
person object
Person that this crm activity is for
user object
User that triggered this crm activity
{
"id": 1,
"created_at": "2024-01-01T00:00:00.000000+00:00",
"updated_at": "2024-01-01T00:00:00.000000+00:00",
"subject": "Call: Connected | Interested",
"description": "Timeline is 2 weeks for demo, set with Kate",
"crm_id": "00T0H00003w2FBhUAM",
"activity_type": "phone",
"error": "Could not find a CRM account link.",
"custom_crm_fields": {
"ecorp__Call_Type__c": "inbound follow up"
},
"person": {
"id": 1,
"_href": "https://api.salesloft.com/v2/people/1"
},
"user": {
"id": 2,
"_href": "https://api.salesloft.com/v2/users/2"
}
}