Fetch an action
GET/v2/actions/:id
Fetches an action, by ID only. This endpoint will only return actions that are in_progress or pending_activity. Once an action is complete, the request for that action will return a 404 status code.
Request
Path Parameters
Action ID
Responses
- 200
Success
- application/json
- Schema
- Example (from schema)
Schema
ID of Action
Whether this step is due
Datetime of when the Action was created
Datetime of when the Action was last updated
The type of this action. Valid types are: email, phone, other. New types may be added in the future.
The current state of the person on the cadence. Possible values are:
in_progress: this action has not been completed
pending_activity: this action has been acted upon, but the action has not been completed. (i.e. the email is scheduled to send, but has not been delivered yet)
When action is due
ID of the multitouch group
action_details object
The type specific action details
user object
User assigned to action
person object
The subject of an action
cadence object
The cadence of an action
step object
The step of an action
task object
The task associated with an action
{
"id": 1,
"due": true,
"created_at": "2024-01-01T00:00:00.000000+00:00",
"updated_at": "2024-01-01T00:00:00.000000+00:00",
"type": "phone",
"status": "in_progress",
"due_on": "2024-01-01T00:00:00.000000+00:00",
"multitouch_group_id": 1,
"action_details": {
"id": 1,
"_href": "https://api.salesloft.com/v2/action_details/call_instructions/1"
},
"user": {
"id": 1,
"_href": "https://api.salesloft.com/v2/users/1"
},
"person": {
"id": 1,
"_href": "https://api.salesloft.com/v2/people/1"
},
"cadence": {
"id": 1,
"_href": "https://api.salesloft.com/v2/cadences/1"
},
"step": {
"id": 1,
"_href": "https://api.salesloft.com/v2/steps/1"
},
"task": {
"id": 1,
"_href": "https://api.salesloft.com/v2/tasks/1"
}
}