delete_story_dependency
Remove a story dependency in ServiceNow by providing the dependency sys_id to eliminate relationships between development tasks.
Instructions
Delete a story dependency in ServiceNow
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dependency_id | Yes | Sys_id of the dependency is required |
Input Schema (JSON Schema)
{
"properties": {
"dependency_id": {
"description": "Sys_id of the dependency is required",
"title": "Dependency Id",
"type": "string"
}
},
"required": [
"dependency_id"
],
"type": "object"
}