Overview
The fallback endpoint provides sample client data for Zapier trigger testing and configuration. When setting up a “New Client” 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 client data when available, or consistent sample data for testing when your workspace has no clients yet.
Authentication
All requests require a valid API key in the Authorization header:Get Sample Data
Response
Success Response
Returns an array containing one client object - either your most recent client or sample data:Data Fields
Unique client identifier (UUID format)
Client or company name
Primary contact email address
Contact phone number with country code
Complete business or mailing address
Current client status
active- Client is currently activeinactive- Client is temporarily inactive
Client classification
company- Business or organizationindividual- Individual person
Associated workspace information
ISO 8601 timestamp when client was created
ISO 8601 timestamp when client 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 clients, you’ll receive this consistent sample data:Zapier Integration Workflow
How Zapier Uses This Endpoint
1
Trigger Configuration
When you set up a “New Client” trigger in Zapier, it automatically calls this endpoint to fetch sample data.
2
Data Structure Display
Zapier shows you the returned client data structure, including all available fields and their formats.
3
Field Mapping Setup
You can map specific client fields (like
name, email, phone) 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 “New Client” 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 client creation events.
Documentation & Training
Documentation & Training
Reference Use: Use the returned data structure to document what fields are available in your client management workflows.
Workflow Validation
Workflow Validation
Testing Use: Validate that your automation workflows can handle all the client data fields before going live.
Important Notes
Workspace Isolation: Only returns real client 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
- Client IDs are always UUIDs for reliable identification
- Phone numbers include country codes when available
Testing Your Integration
To test how your application handles client data:- Call the endpoint with your API credentials
- Parse the response and extract the first client object
- Validate data types match your expected formats
- Test field mapping for your specific use case
- Handle edge cases like missing optional fields