Versions Compared

Key

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

This API is dedicated to use when users have no access to JWT. User must have Jira Permission to browse users and groups.

Three request headers must be set beforehand:

  • email - email address of the user, who will be accessing API

  • jira-host - address of Jira Cloud instance

  • api-token - token created by the user who will be accessing the API

Endpoints

...

GET​/integration​/app​/rest​/api​/v1​/secure-field​/value​/{issueId}

where issueId is the id of the issue.

This endpoint allows to get all Secure field values for the given issue. Only users with READ permission can see the secure values.

Expand
titleParameters

issueId - id of the issue.

Expand
titleResponse example
Code Block
[
    {
        "fieldName": "Secure Number field",
        "fieldType": "SECURE_NUMBER",
        "globalConfigurationId": "64d25ee1ae45d1595276f16a",
        "textFieldValue": null,
        "numberFieldValue": 7654.0,
        "date": null,
        "permissions": {
            "EDIT": true,
            "VIEW": true,
            "HISTORY": true
        },
        "required": false
    }
]

Code Block
POST​/integration​/app​/rest​/api​/v1​/secure-field​/value​/{issueId}

...