Returns the keys of all properties for the comment identified by the key or by the id.
string
RequiredReturns a list of all properties in the comment.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/comment/{commentId}/properties' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Returns the value of the property with a given key from the comment identified by the key or by the id. The user who retrieves the property is required to have permissions to read the comment.
string
Requiredstring
RequiredReturns the value of the property with a given key from the comment.
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/comment/{commentId}/properties/{propertyKey}' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
Sets the value of the specified comment's property.