api_delete
Send a DELETE request to a specified API endpoint, allowing removal of resources or data. Requires URL and optional headers for structured API interactions within browser automation workflows.
Instructions
Perform a DELETE request to an API endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
headers | No | Request headers | |
url | Yes | API endpoint URL |
Input Schema (JSON Schema)
{
"properties": {
"headers": {
"additionalProperties": {
"type": "string"
},
"description": "Request headers",
"type": "object"
},
"url": {
"description": "API endpoint URL",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}