Getting started with Postman for Tallyfy API
To test Tallyfy’s API with Postman, first set up authentication with your API credentials, then import our collection to explore endpoints for templates, processes, and tasks. This guide walks you through complete setup and provides real examples.
Postman helps you test API endpoints without writing code. For Tallyfy, this means you can quickly:
- Launch processes programmatically
- Update task statuses in bulk
- Export workflow data
- Test integrations before building them
Think of Postman as your API playground - perfect for exploring what’s possible before committing to code.
Before starting, you need:
- A Tallyfy account with API access enabled
- Postman desktop app or web version (free at postman.com ↗[1])
- Your Tallyfy API credentials (found in Settings > API)
-
Get your Tallyfy API credentials
Navigate to Settings > API in Tallyfy and copy your:
- Client ID
- Client Secret
- Organization ID
-
Create a Postman environment
In Postman, click Environments > Create Environment. Add these variables:
TALLYFY_CLIENT_ID = [your client id]TALLYFY_CLIENT_SECRET = [your client secret]TALLYFY_ORG_ID = [your organization id]TALLYFY_BASE_URL = https://api.tallyfy.com -
Set up authentication
Create a new request in Postman:
- Method:
POST
- URL:
{{TALLYFY_BASE_URL}}/oauth/token
- Body (x-www-form-urlencoded):
grant_type = client_credentialsclient_id = {{TALLYFY_CLIENT_ID}}client_secret = {{TALLYFY_CLIENT_SECRET}}
- Method:
-
Test your first API call
After getting your access token, try listing templates:
- Method:
GET
- URL:
{{TALLYFY_BASE_URL}}/organizations/{{TALLYFY_ORG_ID}}/templates
- Authorization: Bearer Token (paste your access token)
- Method:
Here are the most useful endpoints for workflow automation:
POST /organizations/{{TALLYFY_ORG_ID}}/templates/{{TEMPLATE_ID}}/launch
PUT /tasks/{{TASK_ID}}/complete
GET /organizations/{{TALLYFY_ORG_ID}}/processes?status=active
POST /tasks/{{TASK_ID}}/files
This comprehensive Postman guide is organized into focused sections:
Postman > Authentication setup for Postman
Open Api > Integrate with Tallyfy using the API
- 2025 Tallyfy, Inc.
- Privacy Policy
- Terms of Use
- Report Issue
- Trademarks