get_task
Retrieve a specific task from Union by providing its name, project, and domain to access task details and functionality.
Instructions
Get a union task.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
domain | Yes | ||
name | Yes | ||
project | Yes |
Input Schema (JSON Schema)
{
"properties": {
"domain": {
"title": "Domain",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
},
"project": {
"title": "Project",
"type": "string"
}
},
"required": [
"name",
"project",
"domain"
],
"title": "get_taskArguments",
"type": "object"
}