Zoho Sprints provides a feature-rich agile project management tool with Scrum Board, agile reports, backlog, timesheets, meetings and dashboard.
Go to siteZoho Sprints is a versatile agile project management tool that enables teams to plan, track, and iterate their work in sprints. With the Zoho Sprints API, you can automate your agile workflows, sync projects across different platforms, and create custom dashboards to monitor progress. Using Pipedream, you can connect Zoho Sprints with hundreds of apps to streamline processes, trigger actions based on sprint changes, and manipulate sprint data programmatically.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zoho_sprints: {
type: "app",
app: "zoho_sprints",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.zoho_sprints.$auth.base_api_uri}/teams/`,
headers: {
"Authorization": `Zoho-oauthtoken ${this.zoho_sprints.$auth.oauth_access_token}`,
},
})
},
})
Automated Sprint Reporting: Generate sprint reports automatically by connecting Zoho Sprints to a data visualization tool like Google Sheets. Whenever a sprint ends, Pipedream can trigger a workflow that compiles key metrics and populates them into a predefined Google Sheets template, giving stakeholders real-time insights.
Sprint Change Notifications: Stay updated with sprint changes by creating a workflow that sends real-time notifications. When a sprint is updated in Zoho Sprints, Pipedream can trigger a notification to be sent through Slack or email, ensuring that team members are always informed about the latest sprint developments.
Issue Tracking Integration: Integrate Zoho Sprints with an external issue tracking system like Jira. When a new issue is created in Jira, Pipedream can automate the creation of a corresponding work item in Zoho Sprints, keeping your backlogs synchronized and making cross-platform collaboration seamless.
Creates a new task, story, or bug in an existing Zoho Sprints project. See the documentation
Removes a specified task, story, or bug from a project in Zoho Sprints. See the documentation
Changes the status of an existing project in Zoho Sprints. See the documentation
Issues Connecting My Account: IP Allowlist
If your Zoho security policy includes an IP Allowlist, update it to connect your account:
44.223.89.56
- 44.223.89.63
.After connecting your account, make sure to run the workflow within a VPC.
Zoho Sprints uses OAuth authentication. When you connect your Zoho Sprints account, Pipedream will open a popup window where you can sign into Zoho Sprints and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Zoho Sprints API.
Pipedream requests the following authorization scopes when you connect your account:
ZohoSprints.projects.READ
ZohoSprints.projects.CREATE
ZohoSprints.teams.READ
ZohoSprints.projects.UPDATE
ZohoSprints.items.CREATE
ZohoSprints.items.READ
ZohoSprints.sprints.READ
ZohoSprints.projectusers.READ
ZohoSprints.epic.READ
ZohoSprints.webhook.CREATE
ZohoSprints.webhook.READ
ZohoSprints.webhook.DELETE
ZohoSprints.items.DELETE
GET
https://accounts.zoho.com/oauth/v2/auth
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
&
access_type=offline
&
prompt=consent
POST
{{custom_fields.accounts_server}}/oauth/v2/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
{{custom_fields.accounts_server}}/oauth/v2/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}