Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Canvas is simple to use, but before diving in you should know some of the key concepts involved.

...

If you have worked with APIs before, you will know that it can be challenging to manually handle API authentication, safe storage of credentials , for multiple clients, refreshing of session tokens, API changes, OAuth, etc.

...

When you register a new application (“app”) in a user account you will be asked to provide necessary API credentials (usernames, passwords, API keys, etc). These details are stored safely encrypted in the user account , and can then be used by the integrations (“workflows”) that you set up.

...

In the previous example we added the Azure AD application to the user account, which unlocked the following blocks for use in workflows:

...

Workflows:

“Workflow” is the term used for integrations in Canvas.

...

Here is an example of a workflow which updates employees and agreements in Quinyx using data from fetched from a FTP server:

...

It is important to know that blocks on Canvas (usually) do not query external APIs directly; instead they query an internal wrapper/middle layer API which is part of Canvas' backend.
The middle layer API forwards requests to the external API, using the credentials from the registered application in the user account.

...