menu
Get an automation
Returns a single automation with its trigger event, linked template, and active state.
Endpoint
GET https://api.sendstreak.com/v2/accounts/{accountId}/automations/{automationId}
All v2 endpoints require a bearer token - see Authentication.
Path parameters
| Parameter | Type | Description |
|---|---|---|
accountId | string | The account the request is scoped to. |
automationId | string |
Response
The automation.
{
"_id": "665f0a2b1c9d440012ab34cd",
"name": "Example name",
"templateId": "6650cc1d3e8a220013ef78ab",
"triggerEventSlug": "signup",
"active": false
}
Errors
| Status | Description |
|---|---|
401 | Missing or invalid token, or the token is not authorized for this account/user. |
404 | The requested resource does not exist. |
See Errors and rate limits for what error responses look like.
Curl example
curl --location --request GET 'https://api.sendstreak.com/v2/accounts/YOUR_ACCOUNT_ID/automations/YOUR_AUTOMATION_ID' \
--header 'Authorization: Bearer YOUR_API_TOKEN'