I am attempting to delete a custom property from a jira issue. I have the issue Id and property key, and I also have Write permissions on the atlassian-connect.json file.
This is the request: https://developer.atlassian.com/cloud/jira/platform/rest/v3/?utm_source=%2Fcloud%2Fjira%2Fplatform%2Frest&utm_medium=302#api-rest-api-3-issue-issueIdOrKey-properties-propertyKey-delete
However, any time i try to run the request below I get a 403 error. I dont see whats wrong with my request and I am the site admin so permissions shouldn't be an issue.
```
AP.request({
url: `/rest/api/3/issue/{issueId}/properties/{propertyKey}`,
type: "DELETE",
contentType: 'application/json',
success: function(data){
data = JSON.parse(data);
},
error: function(err) {
console.log("error: ", err);
}
});
```
GET and POST requests work fine. Any help would be appreciated.
The issue was in the atlassian-connect.json file, I had READ and WRITE permissions but not DELETE
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.