All articles

Developer Portal

The Developer’s Portal is available to all user types on all account types.

⏱ 2 min read

Overview

Wrike’s Developer portal makes it easier for you to develop apps which work with Wrike’s API. Use Wrike’s Developer Portal to

  • Configure how your app works with the Wrike API through OAuth.
  • Manage and generate tokens for your Wrike API based applications.

There is no limit to the number of apps you can register through the API tab. 

Create an App

  1. Click on your profile image in the Workspace's upper right-hand corner. 1
  2. Select “Apps & Integrations”. 2
  3. Click the “API” tab. 3
  4. Enter a name for your app and click “Create new”. 4
  5. On the next screen 5
    • Add a description. The app description is used in the list of apps on the API tab.
    • Take note of Client ID and Client secret (if you navigate away from this page you’ll be asked to enter your password before being shown this information again).
    • Enter a Redirect URI. You can enter one or more redirect URIs. Redirect URIs should comply with OAuth2 standard requirements and utilize HTTPS protocol. Use https://localhost for local development.
  6. Click “Save”. 6

CreateApp.png

Tokens

Generate permanent tokens to quickly start app development or use it in production for apps which only a few people will be using. Tokens are unique and should be treated like passwords – if someone has your token they are able to see all your Wrike data through the API.

Please note, currently app admins can only create (and revoke) tokens for themselves.

Generate a Token

  1. Click on your profile image in the Workspace's upper right-hand corner. 1
  2. Select “Apps & Integrations”. 2
  3. Click the “API” tab. 3
  4. Click “Configure” 4 next to the app you would like to generate a token for.
  5. Scroll down to the section “Permanent access token”. 5
  6. Click “Obtain token” 6 (you will be asked to enter your password before your token is generated). 

Make sure to safely store your token because it only shown to you once, and you cannot view it again. If necessary, you can revoke your token at any point and then generate a new token for yourself.

GenerateToken.png

Configure Existing Apps

  1. Click on your profile image in the upper right-hand corner of your Workspace.
  2. Select “Apps & Integrations”.
  3. Click the “API” tab.
  4. Click “Configure” to the right of an app’s name.

If you registered an app at developers.wrike.com then please first email support@team.wrike.com so they can make the app available for configuration on your API tab in the Workspace.

Top