The HTTP Node lets Convoflow talk to your own systems, online stores (Shopify, WooCommerce), payment platforms, or management systems (CRM, ERP).
Configuration Fields
urlstringrequired
The API or system URL to call (e.g. https://api.yourcompany.com/orders/{order_id}).
methodenumdefault: GET
The action type:
GET: Query and retrieve data.POST: Send or register new data.PUT/PATCH: Update existing information.DELETE: Remove a record.
connectionIdstringoptional
If your system requires securely stored credentials, select your Webhooks & HTTP APIs connection.
bodyJsonstring | objectoptional
Data you will send to the system (for POST or PUT methods):
{
"customer": "{user_name}",
"phone": "{user_phone}",
"total": "{order_total}"
}
outputVariablestringdefault: system_result
Variable where the response from your system will be stored.