Tideflow’s public API lets developers build custom integrations, automate actions, and extend Tideflow into broader workflows. This guide covers how to authenticate and make your first API call.
What you can do with the Tideflow API
- Create, update, or delete tasks and projects
- Fetch user and workspace data
- Automate task creation or status changes
- Build custom reports or dashboards
Step 1: Generate an API token
- In Tideflow, go to Settings > Developers > API Tokens.
- Click Generate Token, name it (e.g., "Zapier Integration"), and copy the token.
- Store it securely—tokens are only shown once.
Step 2: Authenticate your requests
Include the token in your request header:
Authorization: Bearer YOUR_API_TOKEN
All requests should be made to:
https://api.tideflow.com/v1/
Step 3: Make a test request
Example using curl to fetch current user info:
curl -H "Authorization: Bearer YOUR_API_TOKEN" https://api.tideflow.com/v1/users/me
Step 4: Explore the API documentation
Visit our API documentation for a full list of endpoints, parameters, and examples.
Comments
0 comments
Please sign in to leave a comment.