Overview
The fallback endpoint provides sample timer start data for Zapier trigger testing and configuration. When setting up a “Timer Started” trigger, Zapier uses this endpoint to show users the expected data structure, making it easier to configure workflows before activating live webhook subscriptions.This endpoint intelligently returns your most recent timer start data when available, or consistent sample data for testing when your workspace has no timer entries yet.
Authentication
All requests require a valid API key in the Authorization header:Get Sample Data
Response
Success Response
Returns an array containing one timer start object - either your most recent timer start or sample data:Data Fields
Unique time entry identifier (UUID format)
Time entry description
Date of the time entry in ISO 8601 format
Timer start time in ISO 8601 format
Whether the time entry is billable
Action type - always
"start_timer" for this triggerAssociated workspace information
Team member who started the timer
Associated project information
Associated task information
Array of tags associated with the time entry
ISO 8601 timestamp when time entry was created
ISO 8601 timestamp when time entry was last modified
Error Responses
401 Unauthorized
401 Unauthorized
500 Internal Server Error
500 Internal Server Error
Solution: Retry the request or contact support if the issue persists
Sample Data Format
When your workspace has no timer entries, you’ll receive this consistent sample data:Zapier Integration Workflow
How Zapier Uses This Endpoint
1
Trigger Configuration
When you set up a “Timer Started” trigger in Zapier, it automatically calls this endpoint to fetch sample data.
2
Data Structure Display
Zapier shows you the returned timer start data structure, including all available fields and their formats.
3
Field Mapping Setup
You can map specific timer fields (like
description, project.name, task.name, teamMember.name) to actions in your workflow.4
Testing & Validation
Use the sample data to test your workflow logic before activating live webhook notifications.
5
Production Activation
Once configured, Zapier switches to receiving real-time data via webhook subscriptions.
Use Cases
Zapier Trigger Setup
Zapier Trigger Setup
Primary Use: Zapier automatically calls this endpoint when users configure “Timer Started” triggers to show them what data will be available.
Integration Development
Integration Development
Development Use: Test your integration logic with consistent, predictable data structures before connecting to live timer start events.
Documentation & Training
Documentation & Training
Reference Use: Use the returned data structure to document what fields are available in your time tracking workflows.
Workflow Validation
Workflow Validation
Testing Use: Validate that your automation workflows can handle all the timer data fields before going live.
Important Notes
Workspace Isolation: Only returns real timer data from your authenticated workspace. Cross-workspace data access is prevented for security.
Integration Best Practices:
- Always test your workflows with this sample data first
- The endpoint returns an array, so access the first element:
data[0] - All dates use ISO 8601 format for consistent parsing
- Time entry IDs are always UUIDs for reliable identification
- Tags arrays may be empty for entries with no tags
- Action field is always
"start_timer"for this trigger - Start time is always present, but end time is not (timer is running)
Testing Your Integration
To test how your application handles timer start data:- Call the endpoint with your API credentials
- Parse the response and extract the first timer object
- Validate data types match your expected formats
- Test field mapping for your specific use case
- Handle edge cases like missing optional fields or empty arrays