REST

Communication
{
"url": "https://www.example.com/{{parameters.url}}"
}
Mappable parameters
{
"name": "url",
"type": "text",
"label": "URL",
"help": "Enter a path relative to `https://www.example.com`. For example: `/v1/something`",
"required": true
}
Example:

OAuth Scopes
When your app requires specifying scopes to access different groups of endpoints, you need to tweak the connection code a bit to make it work correctly with the Universal Module. Here's how:
Step 1
Add a new advanced parameter called scopes
to the connection parameters.

Step 2
In the authorize
part of the connection, merge the original scopes with additional scopes added by the parameter from the previous step.

Step 3
Now when you want to use Universal Module with scopes that have not been granted to the connection previously, you can create a new connection and request those additional scopes manually.

Last updated