Modules
There are six basic types of modules:
Type
Description
Use if the API endpoint returns a single response. For example, Create a book, Delete a book, or Get a book.
Use if the API endpoint returns multiple items. For example, List books finds specific books according to search criteria.
Use to watch for any changes in your app or service. For example, Watch a new book is triggered whenever a new book has been added to the library.
Use if the API endpoint has a webhook available (dedicated or shared). For example, Watch a new event.
Use to enable users to perform an arbitrary API call to the service. For example, Make an API call and Execute a GraphQL query.
Use to send processed data back to a webhook.
Last updated