The Assembla API lets you tap into a robust project management platform, offering seamless automation opportunities for developers and teams. With it, you can automate ticket creation, track commits and merge requests, manage users, and synchronize project activities with other tools. It's a boon for boosting productivity and ensuring that your project's moving parts stay well-oiled and in sync.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
assembla: {
type: "app",
app: "assembla",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.assembla.com/v1/user`,
headers: {
Authorization: `Bearer ${this.assembla.$auth.oauth_access_token}`,
},
})
},
})
Ticket Management Automation: Automatically create Assembla tickets from customer emails or support requests captured in apps like Zendesk or Intercom. This ensures that user-reported issues are promptly converted into actionable tasks for your dev team.
Commit Tracking for Compliance: Set up a workflow that monitors every push to your repositories, logs them in a Google Sheet or a data store, and creates an Assembla ticket for review. A perfect way to maintain change logs for auditing and compliance purposes.
User Management Sync: Whenever a new team member is added to your GitHub organization, use Pipedream to add them as a user in Assembla too, and assign them to the correct team space. Keep your user management in sync across platforms without lifting a finger.
Assembla uses OAuth authentication. When you connect your Assembla account, Pipedream will open a popup window where you can sign into Assembla and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Assembla API.
Pipedream requests the following authorization scopes when you connect your account:
GET
https://api.assembla.com/authorization
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://api.assembla.com/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
https://api.assembla.com/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}}