Make HTTP requests to third-party APIs and websites
GET
: Retrieve dataPOST
: Create new dataPUT
: Update existing dataPATCH
: Partially update dataDELETE
: Remove dataapplication/json
- For JSON dataapplication/x-www-form-urlencoded
- For form dataapplication/xml
- For XML datamultipart/form-data
- For file uploads with text fields (experimental)text/plain
- For plain textapplication/octet-stream
- For binary data (images, PDFs, etc.)ℹ️ Note on Multipart/Form-Data The multipart/form-data support is currently experimental. When uploading files with text fields, note that the UX is limited as it only works with string values.