Postman > Authentication setup for Postman
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.
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.
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
-
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.
Here are the most-used endpoints. All paths sit under /organizations/{{TALLYFY_ORG_ID}}.
POST /organizations/{{TALLYFY_ORG_ID}}/runsBody: { "checklist_id": "{{TEMPLATE_ID}}", "name": "My Process" }POST /organizations/{{TALLYFY_ORG_ID}}/runs/{{RUN_ID}}/completed-tasksBody: { "task_id": "{{TASK_ID}}" }GET /organizations/{{TALLYFY_ORG_ID}}/runs?status=activePOST /organizations/{{TALLYFY_ORG_ID}}/uploadThe Postman guide is split into focused sections:
Open Api > API integration guide
Was this helpful?
- 2025 Tallyfy, Inc.
- Privacy Policy
- Terms of Use
- Report Issue
- Trademarks