Modules

There are six basic types of modules:

Use if the API endpoint returns a single response. Examples are Create a book, Delete a book or Get a Book.

Use if the API endpoint returns multiple items. An example is List Books that will find specific books according to search criteria.

Use if you wish to watch for any changes in your app/service. Examples are Watch a New Book, which will be triggered whenever a new book has been added to the library.

Use if the API endpoint has a webhook available (dedicated or shared). Example is Watch a New Event.

Use if you want to enable users to perform an arbitrary API call to the service. Examples are Make an API Call and Execute a GraphQL Query.

Use if you need to send a processed data back to a webhook.

Last updated