Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Panel
panelIconIdatlassian-info
panelIcon:info:
panelIconText:info:
bgColor#F4F5F7

This page is about Assets & Inventory Plugin for Jira DC. Using Cloud? Click here.

On this page:

Table of Contents
minLevel1
maxLevel6
outlinefalse
styledefault
typelist
printabletrue

Check-in assets with filter

Method

PUT

URL

/rest/jip-api/1.0/asset-operations/check-in.json

Code Blockexpand
collapse
titleRequest Bodybody:
Code Block
true
{
  "operation": 2,
  "sync": false,
  "queryIndexParam": {
    "querySource": "GENERIC_SEARCH",
    "searchType": "basic",
    "listType": "detail",
    "queryIndexSearchParams": [
      {
        "field": "form.name",
        "keywords": [
          "Sample"
        ],
        "fieldType": "LIST"
      }
    ],
    "pageNumber": 1,
    "pageSize": 15,
    "sortDirection": "asc",
    "sortField": "asset.name",
    "sortType": "STRING",
    "respTime": 1589443129179
  }
}
Code Blockexpand
titleSample Responsecollapsetrueresponse:
Code Block
{
  "success" : true,
  "errorCode" : null,
  "errorMessage" : null,
  "data" : 214,
  "pagingInfo" : null
}

Check-in selected assets

Method

PUT

URL

/rest/jip-api/1.0/asset-operations/check-in.json

Code Blockexpand
titleRequest Bodycollapsetruebody:
Code Block
{
  "operation": 1,
  "sync": false,
  "assetIds": [
    94,
    95
  ]
}
Code Blockexpand
titleSample Responsecollapsetrueresponse:
Code Block
{
  "success" : true,
  "errorCode" : null,
  "errorMessage" : null,
  "data" : 215,
  "pagingInfo" : null
}