POST update prioritization

Updates an existing prioritization that is not yet locked for editing.

Resource URL:

https://api.priotice.se/rest/{auth}/prioritization/update

POST parameters:

Variable name
(case sensitive)
Required Variable type Note
PrioID Required integer Prioritization ID
PrioTitle Optional string Prioritization title (name)
PrioDetails Optional string Prioritization description (short description)
RateAlternatives Optional integer
possible values: 1 or 0
Defines how alternatives are being evaluated: 1 means scale based rating, 0 means pairwise comparison
At least 2 POST parameters are required, PrioID and one of the others. Optional parameters that are not being sent are not being updated.

Example request

POST https://api.priotice.se/rest/d41d8cd98f00b204e9800998ecf8427e/prioritization/update

Example response:

{ "Status": "success", "Data": { "PrioID": 50 } }

CURL example:

curl --data "PrioID=50&PrioTitle=Updated%20title" https://api.priotice.se/rest/d41d8cd98f00b204e9800998ecf8427e/prioritization/update