Versions Compared

Key

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

...

Info

SECURITY

Only Jira users with Jira Admininstrators or Jira System Administrators global permission can access this endpoint.

Info

SUPPORT

Please use Netic A/S Service Desk if https://aetyio.atlassian.net/servicedesk/customer/portal/16 if you have any questions or difficulties using the server endpoints for Jira user properties.

Operation

HTTP Method

Authentication

REST endpoint

JSON Payload

Get Jira user property

GET

BASIC

<jira-base-url>/rest/jirauserexport/1.0/userproperties


Code Block
languagejs
{"username": "admin","userPropertyKey": "mobile"}


Create Jira user property

POST

BASIC

<jira-base-url>/rest/jirauserexport/1.0/userproperties


Code Block
languagejs
{"username": "admin","userPropertyKey": "mobile", "userPropertyValue":"+4511223344"}


Update Jira user property

PUT

BASIC

<jira-base-url>/rest/jirauserexport/1.0/userproperties


Code Block
languagejs
{"username": "admin","userPropertyKey": "mobile", "userPropertyValue":"+4511223344"}


Delete Jira user property

DELETE

BASIC

<jira-base-url>/rest/jirauserexport/1.0/userproperties


Code Block
languagejs
{"username": "admin","userPropertyKey": "mobile"}


Get user property for a given user

...