Using the Teamwork API, you can build powerful tools and applications that help you or your team stay connected and get more done. Here are a few examples of things you can build with it:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
teamwork: {
type: "app",
app: "teamwork",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.teamwork.$auth.domain}/me.json`,
headers: {
Authorization: `Bearer ${this.teamwork.$auth.oauth_access_token}`,
},
})
},
})
Teamwork uses OAuth authentication. When you connect your Teamwork account, Pipedream will open a popup window where you can sign into Teamwork and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Teamwork API.
Pipedream requests the following authorization scopes when you connect your account:
GET
https://www.teamwork.com/launchpad/login
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://www.teamwork.com/launchpad/v1/token.json
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}}