Got feedback or spotted a mistake?

Leave a comment at the end of this page or email contact@krishagni.com

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 3 Current »

/openspecimen/rest/ng/permissible-values/{ID}

Use this resource URL to update a PV dropdown value.

attribute

A unique name of dropdown where you are adding a new value.

Props

Properties of dropdown. e.g., {"abbreviation": "cDNA"}

Value

A unique dropdown value.

Concept Code

A unique concept code

http[s]:<host>:<port>/openspecimen/rest/ng/permissible-values/{ID}

Use this URL to update the PV dropdown.

Result:

The response to this request will contain the details of the updated PV dropdown.

Below is an example of updating a PV dropdown:

URL

http[s]:<host>:<port>/openspecimen/rest/ng/permissible-values/

Method

PUT

Request

application/json

Request Payload

{
    "attribute": "spsz",
    "props": {
        "abbreviation": "5mmx5mm"
    },
    "value": "5*5mm",
    "conceptCode": "size in mm"
}

Response

{
    "id": 91621,
    "value": "5*5mm",
    "attribute": "spsz",
    "conceptCode": "size in mm",
    "props": {
        "abbreviation": "5x5mm"
    },
    "activityStatus": "Active"
}

code

Applies to

Status Message

200

All resources

PV dropdown has been updated successfully

400

All requests

Invalid parameters.

401

All requests

Authorization failed, user doesn’t have authority

500

All requests

Internal server error, encountered server error while performing operations

  • No labels