Get workflow details
Returns full details for a single workflow, including the complete report with engagement statistics.
Endpoint
Section titled “Endpoint”HTTP method: GET
https://api.sender.net/v2/workflows/{id}
Parameters
Section titled “Parameters”| Parameter | Type | Description |
|---|---|---|
id | string required | Hashed workflow ID. |
Request Examples
Section titled “Request Examples”const url = new URL("https://api.sender.net/v2/workflows/{id}");
let headers = { "Authorization": "Bearer [your-token]", "Content-Type": "application/json", "Accept": "application/json",};
fetch(url, { method: "GET", headers,}).then(response => response.json()).then(data => console.log(data)).catch(error => console.error('Error:', error));$client = new \GuzzleHttp\Client();$response = $client->get( 'https://api.sender.net/v2/workflows/{id}', [ 'headers' => [ 'Authorization' => 'Bearer [your-token]', 'Content-Type' => 'application/json', 'Accept' => 'application/json', ], ]);
$body = $response->getBody()->getContents();$data = json_decode($body, true);print_r($data);import requestsimport json
url = "https://api.sender.net/v2/workflows/{id}"
headers = { "Authorization": "Bearer [your-token]", "Content-Type": "application/json", "Accept": "application/json",}
response = requests.request('GET', url, headers=headers)
print(response.json())curl -X GET \-G "https://api.sender.net/v2/workflows/{id}" \-H "Authorization: Bearer [your-token]" \-H "Content-Type: application/json" \-H "Accept: application/json"Response
Section titled “Response”{ "data": { "id": "abc123XY", "user_id": 42, "account_id": 7, "title": "Welcome Series", "status": "ACTIVE", "created": "2025-01-15 10:00:00", "modified": "2025-03-20 14:30:00", "emails_sent": 1200, "type": "automation", "description": "Onboarding sequence for new subscribers", "thumbnail": null, "workflow_category_id": 3, "report": { "sent": 1200, "opened": 480, "clicked": 96, "unsubscribed": 12, "bounced": 8, "open_rate": 40, "click_rate": 8, "unsubscribe_rate": 1, "bounce_rate": 0.67 } }}