fr_create_task
Create tasks in Freshrelease projects with customizable fields including title, description, assignee, due dates, and issue types to organize and track work items.
Instructions
Create a task under a Freshrelease project.
- due_date: ISO 8601 date string (e.g., 2025-12-31) if supported by your account
- issue_type_name: case-insensitive issue type key (e.g., "epic", "task").
Resolved to an `issue_type_id` via `/project_issue_types` and added to payload.
- user: optional name or email. If provided and `assignee_id` is not,
resolves to a user id via `/{project_identifier}/users?q=...` and sets `assignee_id`.
- additional_fields: arbitrary key/value pairs to include in the request body
(unknown keys will be passed through to the API). Core fields
(title, description, assignee_id, status, due_date, issue_type_id) cannot be overridden.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
additional_fields | No | ||
assignee_id | No | ||
description | No | ||
due_date | No | ||
issue_type_name | No | ||
project_identifier | Yes | ||
status | No | ||
title | Yes | ||
user | No |
Input Schema (JSON Schema)
{
"$defs": {
"TASK_STATUS": {
"description": "Machine-friendly task status values supported by the API.",
"enum": [
"todo",
"in_progress",
"done"
],
"title": "TASK_STATUS",
"type": "string"
}
},
"properties": {
"additional_fields": {
"anyOf": [
{
"additionalProperties": true,
"type": "object"
},
{
"type": "null"
}
],
"default": null,
"title": "Additional Fields"
},
"assignee_id": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Assignee Id"
},
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"due_date": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Due Date"
},
"issue_type_name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Issue Type Name"
},
"project_identifier": {
"anyOf": [
{
"type": "integer"
},
{
"type": "string"
}
],
"title": "Project Identifier"
},
"status": {
"anyOf": [
{
"type": "string"
},
{
"$ref": "#/$defs/TASK_STATUS"
},
{
"type": "null"
}
],
"default": null,
"title": "Status"
},
"title": {
"title": "Title",
"type": "string"
},
"user": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "User"
}
},
"required": [
"project_identifier",
"title"
],
"title": "fr_create_taskArguments",
"type": "object"
}