Pointagram the gamification tool that increases motivation and team achievements. Keep your team goal-oriented and celebrate great performance together.
Go to siteThe Pointagram API offers a suite of functions for gamifying performance tracking. It's a tool to motivate teams and individuals by turning targets and achievements into point-based games and competitions. By leveraging this API in Pipedream, you can automate the tracking of activities, update leaderboards, award badges, and integrate Pointagram with other business tools to streamline productivity and engagement.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pointagram: {
type: "app",
app: "pointagram",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.pointagram.com/server/externalapi.php/list_players`,
headers: {
"api_key": `${this.pointagram.$auth.api_key}`,
"api_user": `${this.pointagram.$auth.api_user}`,
"Content-Type": `application/json`,
},
})
},
})
Automated Points Allocation: Set up a workflow where sales or customer service activities, tracked in a CRM like Salesforce, automatically grant points to your team members in Pointagram. Each new record (like a closed sale or resolved support ticket) can trigger a Pipedream workflow that uses the Pointagram API to update the respective member's points.
Progress Tracking and Notifications: Create a workflow that listens for updated scores and leaderboards in Pointagram. When certain thresholds are reached or someone tops the leaderboard, trigger an automated notification through Slack or email, using Pipedream's integration with messaging apps, to celebrate the achievement and encourage continuous performance.
Reward Redemption Process: Implement a workflow where Pointagram points can be exchanged for rewards. When a team member requests a reward in Pointagram, use Pipedream to capture this event, verify the points balance via the API, and then process the reward claim, potentially by creating a task in a project management tool like Asana or sending a notification to the admin team.
Pointagram uses API keys for authentication. When you connect your Pointagram account, Pipedream securely stores the keys so you can easily authenticate to Pointagram APIs in both code and no-code steps.
In order to use the Pointagram API, you need an API Key and your Pointagram login (email address).
API key: go to your profile and click Settings, then Integrations. Add a Custom Integration and click Create Credentials. Name your integration and click ‘Show Key’ to get your API key.
Pointagram login: use the email address you use to sign in to Pointagram.