Weworkbook

Weworkbook is a cloud-based software service that helps training organizations increase enrollments and reduce costs.

Go to site
Explore
/
Apps
/
Weworkbook

Weworkbook API Integrations

Build and run workflows using the Weworkbook API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

Let’s explore what you can do with the weworkbook API. The we workbook API makes it easy to integrate business solutions with your own applications and tools. With it you can quickly and easily access core features of our service such as task management, messaging, and analytics.

Using the weworkbook API, you can develop solutions that make work easier and more efficient by:

  • Managing tasks - Automating tasks, assigning them to individuals or groups, and tracking progress in real-time.
  • Sending messages - Create conversations and participate in threads, add or remove recipients, hide conversations, and mark messages as read or unread.
  • Analyzing data - Analyze data from multiple sources, visualize data, create reports and dashboards, identify trends, and locate insights.
  • Accessing third-party APIs - Connect with a wide range of third-party applications and data sources to extend the capabilities of the WeWorkbook platform.

In addition, with the WeWorkbook API you can build:

  • Common applications - Create web or mobile applications for team collaboration and collaboration with external partners.
  • Custom solutions - Build interface solutions such as custom links, multi-screen applications, and integrated tools.
  • Reporting tools - Build reporting and visualization tools to gain insights and track performance.
  • Automation solutions - Deliver automated solutions such as automation of processes and workflows.
  • Chat bots - Construct bots that understand natural language and respond to interactions consistently and intelligently.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    weworkbook: {
      type: "app",
      app: "weworkbook",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.weworkbook.com/api/v1/courses`,
      headers: {
        Authorization: `Bearer ${this.weworkbook.$auth.oauth_access_token}`,
      },
    })
  },
})

Choose an API to Connect with Weworkbook API

1
-
12
of
1000+
apps by most popular

Authentication

Weworkbook uses OAuth authentication. When you connect your Weworkbook account, Pipedream will open a popup window where you can sign into Weworkbook and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Weworkbook API.

Pipedream requests the following authorization scopes when you connect your account:

OAuth Request Configurations:
  1. authorization
    GEThttps://api.weworkbook.com/oauth/authorize?client_id={{custom_fields.client_id}}&redirect_uri={{oauth.redirect_uri}}&state={{oauth.state}}&response_type=code&scope={{oauth.space_separated_scopes}}
  2. accessToken
    POSThttps://api.weworkbook.com/oauth/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{custom_fields.client_id}}&client_secret={{custom_fields.client_secret}}&redirect_uri={{oauth.redirect_uri}}&grant_type=authorization_code&code={{oauth.code}}
  3. refreshToken
    POSThttps://api.weworkbook.com/oauth/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{custom_fields.client_id}}&client_secret={{custom_fields.client_secret}}&grant_type=refresh_token&refresh_token={{oauth.refresh_token}}