Publish an HTTP route

Bind the Function
- Open HTTP APIs and select the target API.
- On Bindings, choose Add route.
- Select the Function, HTTP method, binding path, request mapping, and enabled state.
- Verify authentication and granted Function permissions.
- Deploy the Project to Development.
Invoke the route
Use the exact Development URL shown by the application:
bash
curl "$HTTP_URL/v1/customers/search?query=ada&limit=10" \
-H "x-api-key: $HTTP_API_KEY"Path parameters, query values, selected headers, and JSON body fields are mapped to Function input before schema validation. The response is the validated Function output using the binding's HTTP response behavior.