api_put
Send data updates to an API endpoint using the PUT method. Specify the URL, JSON data, and headers to modify server-side resources efficiently.
Instructions
Perform a PUT request to an API endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
data | Yes | Request body data (JSON string) | |
headers | No | Request headers | |
url | Yes | API endpoint URL |
Input Schema (JSON Schema)
{
"properties": {
"data": {
"description": "Request body data (JSON string)",
"type": "string"
},
"headers": {
"additionalProperties": {
"type": "string"
},
"description": "Request headers",
"type": "object"
},
"url": {
"description": "API endpoint URL",
"type": "string"
}
},
"required": [
"url",
"data"
],
"type": "object"
}