Getting started with Postman API testing
Set up authentication with your Tallyfy credentials in Postman, then start testing endpoints for templates, processes, and tasks. No code required.
Why use Postman with Tallyfy?
Section titled “Why use Postman with Tallyfy?”Postman lets you test Tallyfy’s API without writing code. You can:
- Launch processes from templates
- Complete tasks and update statuses
- Export workflow data
- Test integrations before building them
Think of it as a playground for Tallyfy’s API - you’ll figure out what’s possible before committing to code.
Prerequisites
Section titled “Prerequisites”You’ll need:
- A Tallyfy account with API access
- Postman desktop or web app (free at postman.com ↗[1])
- Your API credentials from Settings > Integrations > REST API in Tallyfy
Quick setup
Section titled “Quick setup”-
Get your credentials from Tallyfy
Go to Settings > Integrations > REST API and copy your:
- Client ID
- Client Secret
- Organization ID
- Your Tallyfy login email and password
-
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_USERNAME = your@email.comTALLYFY_PASSWORD = [your password]TALLYFY_BASE_URL = https://go.tallyfy.com/api -
Set up authentication
Tallyfy uses the
passwordgrant type - most endpoints need user context. Create a new request:- Method:
POST - URL:
{{TALLYFY_BASE_URL}}/oauth/token - Body (x-www-form-urlencoded):
grant_type = passwordusername = {{TALLYFY_USERNAME}}password = {{TALLYFY_PASSWORD}}client_id = {{TALLYFY_CLIENT_ID}}client_secret = {{TALLYFY_CLIENT_SECRET}}
- Method:
-
Test your first API call
After getting your access token, try listing templates. Every request needs these headers:
Authorization: Bearer [your access token]X-Tallyfy-Client: APIClientAccept: application/json
Then send:
- Method:
GET - URL:
{{TALLYFY_BASE_URL}}/organizations/{{TALLYFY_ORG_ID}}/checklists
Important - The API uses different names than the Tallyfy UI. Templates are called
checklistsand processes are calledrunsin API endpoints.
Common Tallyfy API operations
Section titled “Common Tallyfy API operations”Here are the most-used endpoints. All paths sit under /organizations/{{TALLYFY_ORG_ID}}.
Launch a process from a template
Section titled “Launch a process from a template”POST /organizations/{{TALLYFY_ORG_ID}}/runsBody: { "checklist_id": "{{TEMPLATE_ID}}", "name": "My Process" }Complete a task
Section titled “Complete a task”POST /organizations/{{TALLYFY_ORG_ID}}/runs/{{RUN_ID}}/completed-tasksBody: { "task_id": "{{TASK_ID}}" }List active processes
Section titled “List active processes”GET /organizations/{{TALLYFY_ORG_ID}}/runs?status=activeUpload a file
Section titled “Upload a file”POST /organizations/{{TALLYFY_ORG_ID}}/uploadWhat’s in this guide?
Section titled “What’s in this guide?”The Postman guide is split into focused sections:
Related articles
Section titled “Related articles”Postman > Authentication setup for Postman
Open Api > API integration guide
Was this helpful?
- 2026 Tallyfy, Inc.
- Privacy Policy
- Terms of Use
- Report Issue
- Trademarks