fr_get_all_tasks
Retrieve all tasks from a Freshrelease project using its identifier to manage and track project activities through API integration.
Instructions
Get a task from Freshrelease by ID.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
project_identifier | Yes |
Input Schema (JSON Schema)
{
"properties": {
"project_identifier": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Project Identifier"
}
},
"required": [
"project_identifier"
],
"title": "fr_get_all_tasksArguments",
"type": "object"
}