get_users_sequence_templates
Retrieve saved email sequence templates for a specific user within their team to use when creating new campaigns.
Instructions
Get User's Sequence Templates
This action retrieves all sequence templates (saved sequences) from a user who is a part of certain team. You can use the returned sequence template IDs in the "Create Campaign From A Sequence Template" endpoint.
Args: user_id: ID of the user whose saved sequences to retrieve team_id: ID of the team that the user is part of
Returns: List of saved sequence templates with IDs
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes | ||
| team_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"team_id": {
"type": "string"
},
"user_id": {
"type": "string"
}
},
"required": [
"user_id",
"team_id"
],
"type": "object"
}