Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Current »

You need administrator rights in Jira to perform the tasks on this page.

To improve readability, all JSON results will be beautified, whereas the actual results will not.

Special notes for default local items

As opposed to most ID-based systems, default local item IDs start at -1 and decrement as more items are added.

When all items are cleared, the IDs start back at -1.

Whenever you need to update a default local item, we suggest that you get all default local items and filter them to determine which item ID you should use.

Request URI

The base request URI for all APIs on this page is as follows:

{JIRA Instance}/rest/com.okapya.jira.checklist/latest/checklists/configuration/{FieldConfigId}/defaultlocalitems

APIs

Create

POST [...]/defaultlocalitems

You can create a new global item in the field configuration.

 

Description

Example

Request

A JSON representation of the item to create.

The JSON can be simplified to only include the necessary fields for creation such as the name.

Specifying a rank value will insert the item at that specific rank.

Ranks are zero-based.

{"name":"All tests clear"}

or

{"name":"All tests clear", "statusId":"blocked"}

Response

Returns the full JSON representation of the newly created item.

{
  "id": -1,
  "name": "All tests clear",
  "mandatory": true,
  "rank": 0,
  "statusId": "none",
  "dueDate": null,
  "isHeader": false,
  "checked": false,
  "priorityId": null,
  "globalItemId": 0,
  "version": "5.0",
  "assigneeIds": []
}

Obtain all items

GET [...]/defaultlocalitems

You can obtain all global items included in the path’s field configuration, with the option to exclude disabled items.

 

Description

Example

Response

Returns the full JSON representation of the list of default local items.

[
  {
    "id": -1,
    "name": "All tests clear",
    "mandatory": true,
    "rank": 0,
    "statusId": "none",
    "dueDate": null,
    "isHeader": false,
    "checked": false,
    "priorityId": null,
    "globalItemId": 0,
    "version": "5.0",
    "assigneeIds": []
  },
  {
    "id": -2,
    "name": "Deployed to production",
    "mandatory": true,
    "rank": 1,
    "statusId": "none",
    "dueDate": null,
    "isHeader": false,
    "checked": false,
    "priorityId": null,
    "globalItemId": 0,
    "version": "5.0",
    "assigneeIds": []
  }
]

Obtain a single item

GET [...]/defaultlocalitems/{defaultLocalItemId}

By providing a default local item ID, you can obtain the contents of a single default local item.

 

Description

Example

Response

Returns the full JSON representation of the requested default local item.

{
  "id": -2,
  "name": "Deployed to production",
  "mandatory": true,
  "rank": 1,
  "statusId": "none",
  "dueDate": null,
  "isHeader": false,
  "checked": false,
  "priorityId": null,
  "globalItemId": 0,
  "version": "5.0",
  "assigneeIds": []
}

Update an item

PUT [...]/defaultlocalitems/{defaultLocalItemId}

You can update the specified default local item’s content.

 

Description

Example

Request

A JSON representation of the fields to update, including their values.

To keep updating simple, you only have to list the fields and values you want to update.

Specifying a rank value will move the item at that specific rank.

Ranks are zero-based.

{"mandatory":false}

or

{"mandatory":false, "checked":true}

 

Response

Returns the full JSON representation of the updated default local item.

{
  "id": -2,
  "name": "Deployed to production",
  "mandatory": false,
  "rank": 1,
  "statusId": "none",
  "dueDate": null,
  "isHeader": false,
  "checked": true,
  "priorityId": null,
  "globalItemId": 0,
  "version": "5.0",
  "assigneeIds": []
}

Delete

DELETE ​[...]/defaultlocalitems/{defaultLocalItemId}

You can delete a default local item in the field configuration. This API doesn’t provide a response.

Exceptions

For the list of potential exceptions, see https://okapya.atlassian.net/wiki/spaces/CHKDOC5/pages/2940666327/Exceptions+for+configuration+REST+APIs#Default-local-items-exceptions.


SERVER DOCUMENTATION (On Cloud? Go here.)
Have questions? Contact our Service Desk for help anytime.
  • No labels