Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

GET http://localhost:8080/rest/projectproperties/1.0/property/list/{projectKey}

Query Parameters:

  • projectKey (String) - Jira Project Key
  • propertyId (Number) - Property ID

Response: [Status: 200]

Code Block
$ curl -u username -XGET "http://localhost:8080/rest/projectproperties/1.0/property/list?projectKey=DT"


Get Project Property

GET http://localhost:8080/rest/projectproperties/1.0/property/one/?projectKey={projectKey}&propertyId={propertyId}

GET http://localhost:8080/rest/projectproperties/1.0/property/list/{projectKey}/id/{propertyId}

Query Parameters:

...

Code Block
$ curl -u username -XGET "http://localhost:8080/rest/projectproperties/1.0/property/list/one?projectKey=DT&propertyId=123"


Create/Add Project Properties

...