Skip to main content
Items carry a dynamic set of fields controlled by their process and container permissions. To understand the field model, available field types, and how to discover which fields you can set, see Items and fields.

create_item

Create a new work item in the specified container with a given process type.
Property
Read-onlyNo

Parameters

ParameterTypeRequiredDescription
containerIdstringYesContainer to create the item in. Use get_containers to find IDs.
processIdstringYesProcess type for the item. Use get_container_process_list to find IDs.
namestringYesItem name/title.
descriptionstringNoItem description.
priorityIdstringNoPriority value ID. Use get_priority_list for valid values.
severityIdstringNoSeverity value ID. Use get_severity_list for valid values.
fieldsJsonstringNoAdditional fields as JSON: [{"fieldId":"<id>","value":"<value>"}]

Returns

A CycleItemDto with the created item’s key, name, status, container, and planning details.

update_item

Update an existing work item. Supports item ID or key format (e.g. GEM-123). Only provided fields are updated.
Property
Read-onlyNo

Parameters

ParameterTypeRequiredDescription
itemIdstringYesItem ID or key (e.g. GEM-123).
namestringNoNew item name.
statusIdstringNoStatus value ID. Use get_status_list.
priorityIdstringNoPriority value ID. Use get_priority_list.
severityIdstringNoSeverity value ID. Use get_severity_list.
resolutionIdstringNoResolution value ID. Use get_resolution_list.
fieldsJsonstringNoAdditional fields as JSON: [{"fieldId":"<id>","value":"<value>"}]

Returns

A CycleItemDto with the updated item details.

plan_item

Assign a work item to a board and cycle, optionally assigning a resource.
Property
Read-onlyNo

Parameters

ParameterTypeRequiredDescription
itemIdstringYesItem ID or key.
boardIdstringYesTarget board ID. Use get_board_cycle.
cycleIdstringYesTarget cycle ID. Use get_board_cycle.
resourceIdstringNoUser or job role ID to assign.
resourceTypestringNoUser or JobRole. Required when resourceId is provided.

Returns

A CycleItemDto with the updated planning details.

unplan_item

Remove an item from its board and cycle, clearing all planning fields (board, cycle, resource).
Property
Read-onlyNo

Parameters

ParameterTypeRequiredDescription
itemIdstringYesItem ID or key.

Returns

A CycleItemDto with the cleared planning fields.