Hidden
if this action should not be shown to users. Hidden
is usually selected if you build a create action solely to pair with a search action but do not want it used on its own.
POST
call populates for create actions by default, sending a single item to the provided API endpoint. Zapier then expects a response with an object containing a single item, to be evaluated by isPlainObject and parsed into individual fields for use in subsequent Zap steps.
Select the correct API call if your app expects something other than the default, then paste the URL for your API call in the box under API Endpoint. Zapier will include each of your input form fields in the Request Body automatically.
If your API call expects input data in the core URL, reference any input field’s key with the following text, replacing key
with your field key:
{{bundle.inputData.key}}
The defaults on all other settings work for most basic API calls. If you need to configure more options, click Show Options to add URL Params, HTTP Headers, set your action to omit empty parameters, or customize the request body. Alternately, switch to Code Mode to write custom JavaScript code for your action.