fr_get_task
Retrieve specific task details from Freshrelease using project identifier and task key to access and manage project information.
Instructions
Get a task from Freshrelease by ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | ||
project_identifier | Yes |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Key"
},
"project_identifier": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Project Identifier"
}
},
"required": [
"project_identifier",
"key"
],
"title": "fr_get_taskArguments",
"type": "object"
}