Update Task

PUT /api/v1.0/tasks/{task_id}

This endpoint update the task details.

Path parameters

  • task_id string Required

    Enter task id

application/json

Body Required

  • name string

    Name

  • order number

    Order

  • description string

    Description

  • archived boolean

    Archived

  • completed boolean

    Completed

  • personal boolean

    Personal

  • due_date string

    Due Date

  • start_date string

    Start Date

  • reminder string

    Reminder

  • task_group_id string

    Task Group ID

  • task_id string

    Task ID

  • milestone_id string

    Milestone ID

  • dependency string

    Dependency

  • story_points number

    Story Point

  • meeting_ids array[string]

    List of Meeting ID

  • assignees array[string]

    List of Assignee

  • labels array[string]

    List of labels

  • embed_url string

    Embed URL

  • banner string

    Banner

Responses

  • 200 application/json

    Success Response

    Hide response attribute Show response attribute object
    • message string Required

      Success message

  • 401

    The client request has not been completed because it lacks valid authentication credentials for the requested resource.

  • 403

    The client does not have access rights to the content.

  • 405

    The request method is known by the server but is not supported by the target resource.

PUT /api/v1.0/tasks/{task_id}
curl \
 --request PUT 'https://openapi.niftypm.com/api/v1.0/tasks/{task_id}' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"name":"string","order":42.0,"description":"string","archived":true,"completed":true,"personal":true,"due_date":"string","start_date":"string","reminder":"string","task_group_id":"string","task_id":"string","milestone_id":"string","dependency":"string","story_points":42.0,"meeting_ids":["string"],"assignees":["string"],"labels":["string"],"embed_url":"string","banner":"string"}'
Request examples
{
  "name": "string",
  "order": 42.0,
  "description": "string",
  "archived": true,
  "completed": true,
  "personal": true,
  "due_date": "string",
  "start_date": "string",
  "reminder": "string",
  "task_group_id": "string",
  "task_id": "string",
  "milestone_id": "string",
  "dependency": "string",
  "story_points": 42.0,
  "meeting_ids": [
    "string"
  ],
  "assignees": [
    "string"
  ],
  "labels": [
    "string"
  ],
  "embed_url": "string",
  "banner": "string"
}
Response examples (200)
{
  "message": "string"
}