Skip to main content

Get a project plan subtask

GET 

/api/project-plan-subtasks/{id}

Required permissions:

  • project_plan.view: allows view of project plan subtasks.

Custom fields

Single-option custom fields appear in the response as dynamic fields named like custom_field_55 where 55 is the ID of the custom field. The value is the ID of the selected option, or null when no option is set.

Request

Path Parameters

    id integerrequired

    Possible values: Value must match regular expression [0-9]+

    The ID of the project plan subtask to view

Header Parameters

    Wethod-Company stringrequired

    The company you want to interact with

    Wethod-Version stringrequired

    The API version you want to use

Responses

Returns the requested project plan subtask.

Schema

    id integerrequired

    Possible values: >= 1

    The unique identifier of the resource

    created_at date-timerequired

    The date and time when the resource was created

    updated_at date-timerequired

    The date and time when the resource was last updated

    name stringrequired

    Possible values: <= 255 characters

    The name of the project plan subtask

    sort floatrequired

    The sort order of the subtask within its task

    project_plan_task_id integerrequired

    Possible values: >= 1

    The ID of the project plan task this subtask belongs to

    start_date datenullable

    The start date of the subtask, formatted as YYYY-MM-DD

    end_date datenullable

    The end date of the subtask, formatted as YYYY-MM-DD

    notes stringnullable

    Free-form notes attached to the subtask

    status_key stringnullable

    Possible values: [not-started, in-progress, blocked, done, closed]

    The status of the subtask

    depends_on_id integernullable

    Possible values: >= 1

    The ID of the subtask this subtask depends on, if any

    dependency_type stringnullable

    Possible values: [start-to-start, finish-to-start, start-to-finish, finish-to-finish]

    The dependency type between this subtask and the one it depends on

Loading...