Overview
The fallback endpoint provides sample manual time entry data for Zapier trigger testing and configuration. When setting up a “Manual Time Entry” 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 manual time entry data when available, or consistent sample data for testing when your workspace has no manual time 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 manual time entry object - either your most recent manual time entry or sample data:Data Fields
Unique time entry identifier (UUID format)
Time entry description
Date of the time entry in ISO 8601 format
Time entry start time in ISO 8601 format
Time entry end time in ISO 8601 format
Total duration in seconds (e.g., 9000 = 2.5 hours)
Whether the time entry is billable
Action type - always
"manual_entry" for this triggerAssociated workspace information
Team member who created the manual entry
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 manual time entries, you’ll receive this consistent sample data:Zapier Integration Workflow
How Zapier Uses This Endpoint
1
Trigger Configuration
When you set up a “Manual Time Entry” trigger in Zapier, it automatically calls this endpoint to fetch sample data.
2
Data Structure Display
Zapier shows you the returned manual time entry data structure, including all available fields and their formats.
3
Field Mapping Setup
You can map specific time entry fields (like
description, duration, project.name, task.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 “Manual Time Entry” 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 manual time entry 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 time entry data fields before going live.
Important Notes
Workspace Isolation: Only returns real time entry 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
- Duration is always in seconds for precise calculations
- Tags arrays may be empty for entries with no tags
- Action field is always
"manual_entry"for this trigger - Both start and end times are always present for manual entries
Testing Your Integration
To test how your application handles manual time entry data:- Call the endpoint with your API credentials
- Parse the response and extract the first time entry 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