How to update blueprint assignment in Ideas via REST API
search cancel

How to update blueprint assignment in Ideas via REST API

book

Article ID: 266049

calendar_today

Updated On:

Products

Clarity PPM SaaS

Issue/Introduction

How can we update the Blueprint for existing ideas via REST?

Environment

Release : 16.1.1

Resolution

Here is an example of updating the Blueprint for an idea

5278225 is the id of the Idea

PUT
http://<HOSTNAME>/ppm/rest/v1/ideas

JSON payload:
{
  "d": [
    {
      "blueprintId": "6",
      "_internalId": 5278225
    }
  ],
  "_metadata": {
    "fields": "name,projectType,ideaPriority,scheduleStart,planCostTotal,planBenefitTotal,planNPV,planROI,status,blueprintId,investmentType,parentTypeCode"
  }
}