connector-call-delete
Remove connector calls from the Simplifier Low Code Platform by specifying the connector name and call name to delete.
Instructions
Delete a Connector call
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| connectorName | Yes | Name of the Connector to modify | |
| callName | Yes | Name of the connector call to delete |
Input Schema (JSON Schema)
{
"properties": {
"callName": {
"description": "Name of the connector call to delete",
"type": "string"
},
"connectorName": {
"description": "Name of the Connector to modify",
"type": "string"
}
},
"required": [
"connectorName",
"callName"
],
"type": "object"
}