Document toolboxDocument toolbox

Jira User Properties REST APIs for Jira Cloud

The code examples provided below are for curl, and you will need to adapt them to your preferred means of dealing with REST APIs. All information provided in curly brackets “{}” needs to be replaced with the variables from your instance.

Jira User Properties

The Tempo worklog servlet for Jira Server had always returned additional user information when the addUserDetails parameter was set to true. The information is no longer returned by any Tempo REST API and needs to be fetched from the Jira Cloud REST API retrospectively.

curl --request GET 'https:///{JiraCloudUrl}/rest/api/3/user/properties/{propertyKey}?accountId={AtlassianAccountID}' \--header 'Content-Type: application/json' \--header 'Authorization: Basic {AtlassianAPIToken}' \