REST API For Blueprints
search cancel

REST API For Blueprints

book

Article ID: 390897

calendar_today

Updated On: 03-14-2025

Products

Clarity PPM SaaS Clarity PPM On Premise

Issue/Introduction

Private objects/resources are not for consumption, however there is a need for immediate testing.

Are blueprint updates via REST API?

Resolution

The following calls are available with examples:

1. Reviewing the blueprint

GET /ppm/rest/v1/private/blueprints/5bbbbbb
GET /ppm/rest/v1/private/blueprints/5bbbbbb/sections
GET /ppm/rest/v1/private/blueprints/5bbbbbb/5ssssss/fields

2 Adding a field to a blueprint properties

POST /ppm/rest/v1/private/blueprints/5bbbbbb/5ssssss/fields
{
    "name": "a_an_example",
    "metadataURL": "a_an_example",
    "column": 1,
    "row": 15,
    "width": 1,
    "height": 1
}

2. Removing
DELETE /ppm/rest/v1/private/blueprints/5bbbbbb/sections/5ssssss/fields/5ffffff