curl_put
Send HTTP PUT requests to a specified URL with optional data, headers, and JSON content. Configure redirects, timeouts, and content types for web API interactions.
Instructions
Make an HTTP PUT request using curl
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content_type | No | Content-Type header (will be added automatically for JSON data) | |
data | No | Data to send in the PUT request body | |
follow_redirects | No | Whether to follow redirects | |
headers | No | Optional HTTP headers in the format 'Header: Value' | |
json_data | No | JSON object to send as PUT data | |
timeout | No | Request timeout in seconds | |
url | Yes | The URL to make the PUT request to |