1 What it does
Send HTTP request is a core action in AI Table automation: push data to a URL to trigger external APIs or data exchange. AI Table fields and intermediate workflow results plug straight into the request, and the response feeds downstream steps — the whole thing forms a closed-loop automation. Hit a URL, integrate with third-party systems, e.g.:- Sync data to internal systems — push to ERP / CRM, no manual handoff.
- Scraping — build a crawler, fetch web content, extract data.
- Integrate third-party services — payments, SMS, geolocation.
2 Notes
2.1 HTTP method
Pick a method (required). The method tells the server what operation you want.2.2 Parameters
2.2.1 GET
2.2.2 POST / PUT / PATCH / DELETE
📌 About APISecret
If your target system signs requests, fill in
apiSecret and the system will receive these signed headers:
- x-ddpaas-signature-timestamp: <signing timestamp>
- x-ddpaas-signature: <signature>
apiSecret is the signing key registered upfront.
Your system should compute the signature this way and check it matches — to reject unauthorized calls:
2.2.3 Define the response (output)
- The HTTP response is passed downstream. The response format determines how downstream steps parse and reference these params.
- JSON — downstream steps parse the response as structured JSON. Fill in a sample response so downstream can reference fields.
- Text — downstream references the whole response as text.
- None — downstream cannot reference the response.
3 FAQ
3.1 FAQ
-
Q: HTTP failure rules
- status code ≠ 200
- System exceptions, e.g. timeout.
- Q: What causes HTTP request timeouts? A: Causes — network latency, slow server response, firewall / proxy restrictions, DNS issues, or server overload.
- Q: Can the AI Table automation HTTP request use a fixed IP for IP-allow-listing? A: Yes. Most platforms allow outbound IP allow-lists or fixed IP binding via the platform admin or API gateway. IP ranges: 203.119.128.0/17, 59.82.0.0/16, 140.205.0.0/16, 106.11.0.0/16
-
Q: Can I append query params directly in the URL?
A: Yes —
?key1=value1&key2=value2works for GET, and for some POST too (server-dependent). -
Q: Why does an HTTP request fail to parse correctly? How do I verify it?
A: Causes:
- Bad request format (e.g. JSON syntax errors).
- Encoding issues (e.g. wrong
Content-Type). - Server endpoint changed or version mismatched.
- Missing required headers (e.g. auth token). Verification:
- Replay the same request manually with Postman / curl.
- Check the status code (4xx = client, 5xx = server).
- Enable debug logging or capture with Wireshark.
-
Q: What does a JSON-compliant HTTP response look like?
A:
- Structural rules:
- Must be a valid JSON object (
{}) or array ([]). - Field names quoted with double quotes (
"key"). - Supported types: string, number, boolean, object, array,
null.
- Must be a valid JSON object (
- Common conventions: status code (
"code"), message ("message"), data ("data").
- Structural rules:
-
Q: Max number of key-value params in an HTTP request?
A:
- No hard limit, but bounded by:
- URL length (recommended < 2048 chars).
- Server parser limits (some servers cap param count).
- Performance (avoid redundant params).
- No hard limit, but bounded by:
- Q: Can I reference array data from the HTTP response in downstream steps? A: Yes — loop over it, or compose fields when sending messages.
-
Q: When using a group’s custom bot to send messages, the open-platform sample code doesn’t work as-is — what could be wrong?
A:
- Common issues:
- Wrong webhook URL — placeholder not replaced with the actual generated URL or token.
- Permission missing — bot not in the target group, or not authorized.
- Format mismatch — body doesn’t match API spec (e.g. wrong
Content-Type). - Signature failed — missing or wrong signature (timestamp / secret not computed).
- Network blocked — firewall or proxy blocking.
- Fixes:
- Double-check placeholders in the sample code (e.g.
{token}). - Use a debug tool to inspect headers, body, and response.
- Check the open-platform docs or contact support.
- Double-check placeholders in the sample code (e.g.
- Common issues: