create_work
Generate and manage new work items (issues, tickets) in DevRev by specifying type, title, and applicable part, with optional assignments and details.
Instructions
Create a new work item (issue, ticket) in DevRev
Input Schema
Name | Required | Description | Default |
---|---|---|---|
applies_to_part | Yes | The DevRev ID of the part to which the work item applies | |
body | No | ||
owned_by | No | The DevRev IDs of the users who are assigned to the work item | |
title | Yes | ||
type | Yes |
Input Schema (JSON Schema)
{
"properties": {
"applies_to_part": {
"description": "The DevRev ID of the part to which the work item applies",
"type": "string"
},
"body": {
"type": "string"
},
"owned_by": {
"description": "The DevRev IDs of the users who are assigned to the work item",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"type": "string"
},
"type": {
"enum": [
"issue",
"ticket"
],
"type": "string"
}
},
"required": [
"type",
"title",
"applies_to_part"
],
"type": "object"
}