Lifecycle History Object

Use lifecycle history resources to learn how a prospect is moving through their sales journey, from visitor to won opportunity. Learn what stage they’re currently in, how long they’ve been in that stage, and where that stage sits in the overall sales journey. For information about lifecycle stages, see Lifecycle Stage Resources. Learn more about prospect lifecycles in Salesforce Help.

Include the authentication header with every request. For information on how to authenticate, see Authentication.

Resource NameOperationDescription
Lifecycle History QueryGETRequest information for lifecycle history records that match the specified criteria.
Lifecycle History ReadGETRequest information for a single lifecycle history record.

Request information for the lifecycle history records that match the specified criteria. You can specify the lifecycle history records and fields to request. A maximum of 200 records are returned. To return all lifecycle history records, specify the output as mobile.

Use these parameters to specify the lifecycle history records to return. Parameters can be used in any combination and in any order unless otherwise specified.

Notes:

ParameterTypePossible ValuesDescription
created_afterstringtoday, yesterday, last_7_days, this_month, last_month,<custom_time>Request lifecycle history records created after the specified time. Example: To request lifecycle history records created in 2020, use /api/lifecycleHistory/version/3/do/query?created_after=2019-12-31 24:59:59.
created_beforestringtoday, yesterday, last_7_days, this_month, last_month, <custom_time>Request lifecycle history records created before the specified time. Doesn’t include lifecycle history records created at the specified time. Example: To request lifecycle history records created before today (but not created today), use /api/lifecycleHistory/version/3/do/query?created_before=today.
id_greater_thanintegerAny positive integerRequest lifecycle history records that have an ID greater than the specified number.
id_less_thanintegerAny positive integerRequest lifecycle history records that have an ID less than the specified number.

Use these parameters to specify the lifecycle history fields to return, and how the lifecycle history records are sorted.

ParameterTypePossible ValuesDescription
limitintegerAny integer from 1 through 200.The number of lifecycle history records to return. Default value is 200.
offsetintegerAny positive integerThe number of lifecycle history records to omit from the response (the number to "skip over"). Example: Retrieve a list of lifecycle history records, omitting the 50 most recently updated records. Sort the query by the ID field and use offset=50: /api/lifecycleHistory/version/3/do/query?sort_by=id&offset=50
sort_bystringcreated_at, idThe field by which the results are sorted. See Sort Order.
sort_orderstringascending, descendingThe sort order. The default value depends on which sort_by parameter you specify. See Sort Order.

Use sort_by to specify which field Account Engagement uses to sort the results. Different fields have different default sort orders.

ValueDefault Sort OrderDescription
created_atdescendingSort the results by the lifecycle history records' created_at timestamps.
idascendingSort the results by the lifecycle history records' id fields.

Request information for a single lifecycle history record.

Replace <ID> with the Account Engagement ID of the lifecycle history record.

Request information about the lifecycle history record with ID 1234.

The XML response for a query request contains information for multiple lifecycle history records. The XML response for a read request contains information for a single lifecycle history record.

TagDescription
<result>Parent tag. Contains the lifecycle history records that match the parameters specified in your query.
<total_results>Contains the number of lifecycle history records selected by the query. Note The query request returns a maximum of 200 lifecycle history records. If your query matches more than 200 records, you can make several requests to retrieve all matching records.
<lifecycleHistory>The information about a single lifecycle history record. See Lifecycle History in Object Field References for a complete description of fields.
TagDescription
<lifecycleHistory>Contains a single lifecycle history record. See Lifecycle History in Object Field References for a description of fields.