How can i send data out of the workbook using HTTP Request? Right now I can only see Clay returning me the Clay URL, but I want to paste my own url. How can I do that? There are no other option for me to do a POST call
You can send data from Clay to your own URL using the HTTP API integration:
1. In your Clay table, click "Add enrichment" and search for "HTTP API"
2. Set the Method to "POST"
3. Enter your own URL in the "Endpoint" field
4. In the "Body" section, format your data as JSON with your table columns: LBKS{ "variable1": ##{{ColumnName1}}, "variable2": ##{{ColumnName2}} }LBKS
5. Click "Save" and "Save and run"
A "200" response indicates successful data transmission to your URL.
As per the screenshot there is no option for me to choose POST. Everytime i clikced on HTTP API, the screenshot is the only thing that is showing
When setting up an HTTP API integration in Clay, you should be able to select POST as a method. The HTTP API integration allows you to choose between GET (default), POST, PATCH, PUT, or DELETE methods. If you're not seeing the POST option, try these steps: 1. Click "Add enrichment" and search for "HTTP API" 2. In the Method field, type "POST" (it's a text input field) 3. Enter your own URL in the Endpoint field 4. Configure your request body in JSON format Could you share a screenshot of what you're seeing when setting up the HTTP API integration? This would help me troubleshoot further.