delete_protocol_step
Remove a specific step from a protocols.io protocol using protocol ID and step ID to maintain accurate experimental procedures.
Instructions
Delete a specific step from a protocol by providing both the protocol ID and step ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
protocol_id | Yes | Unique identifier for the protocol | |
step_id | Yes | Unique identifier for the step to be deleted |
Input Schema (JSON Schema)
{
"properties": {
"protocol_id": {
"description": "Unique identifier for the protocol",
"title": "Protocol Id",
"type": "integer"
},
"step_id": {
"description": "Unique identifier for the step to be deleted",
"title": "Step Id",
"type": "string"
}
},
"required": [
"protocol_id",
"step_id"
],
"type": "object"
}