Internal
Create a new instance of the service.
Deletes the property from a project.
This operation can be accessed anonymously.
Permissions required: Administer Jira global permission or Administer Projects project permission for the project containing the property.
The project ID or project key (case sensitive).
The project property key. Use Get project property keys to get a list of all project property keys.
Returns the value of a project property.
This operation can be accessed anonymously.
Permissions required: Browse Projects project permission for the project containing the property.
The project ID or project key (case sensitive).
The project property key. Use Get project property keys to get a list of all project property keys.
Returned if the request is successful.
example:
{
"key": "issue.support",
"value": {
"system.conversation.id": "b1bf38be-5e94-4b40-a3b8-9278735ee1e6",
"system.support.time": "1m"
}
}
Returns all project property keys for the project.
This operation can be accessed anonymously.
Permissions required: Browse Projects project permission for the project.
The project ID or project key (case sensitive).
Returned if the request is successful.
example:
{
"keys": [
{
"key": "issue.support",
"self": "https://your-domain.atlassian.net/rest/api/3/issue/EX-2/properties/issue.support"
}
]
}
Sets the value of the project property. You can use project properties to store custom data against the project.
The value of the request body must be a valid, non-empty JSON blob. The maximum length is 32768 characters.
This operation can be accessed anonymously.
Permissions required: Administer Jira global permission or Administer Projects project permission for the project in which the property is created.
The project ID or project key (case sensitive).
The key of the project property. The maximum length is 255 characters.
The value of the property. The value has to be a valid, non-empty JSON value. The maximum length of the property value is 32768 bytes.
status: 200, mediaType: application/json
Returned if the project property is updated.
status: 201, mediaType: application/json
Returned if the project property is created.
Protected
Static
initialize
This resource represents project properties, which provides for storing custom data against a project. Use it to get, create, and delete project properties as well as get a list of property keys for a project. Project properties are a type of entity property.
See
https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-project-properties