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
TableJSON 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 |