Module Actions
Optionally, you can define the module's action to take advantages of features, read more below.
Last updated
Optionally, you can define the module's action to take advantages of features, read more below.
Last updated
Used for modules that are creating an object, most of the time, these modules use POST request.
Module: Create a Contact
Used for modules that are retrieving an object, most of the time, these modules use GET request.
Module: Get a Contact
Used for modules that are updating an object, most of the time, these modules use PATCH or PUT request.
Module: Update a Contact
Used for modules that are deleting an object, most of the time, these modules use DELETE request.
Module: Delete a Contact
If you happen to receive this error: Invalid module output. Expected Object, but found Array.
, it means that your module should be type Search. Type expects an output type array, and unlike the type action supports directive.
When a module is type Update, a new keyword appears inside Make - .
There are two types of update approaches - partial and full. Read more about it in .