The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hey,
Does anybody have an example of DELETE (custom) rest endpoint for Confluence? (using ScriptRunner plag in)
Thanks
Hi Neta,
Below is an example of a DELETE REST Endpoint that deletes an issue and returns some Json. If you are experiencing issues when trying to use this with a web item then it will not work. You need to hit this endpoint with a DELETE http request. The options for web items does not include this.
I have tested this using Postman and it works. You may want to use an AJAX request in a web resource in order to trigger this from an item within your instance.
import com.atlassian.jira.bc.issue.IssueService
import com.atlassian.jira.component.ComponentAccessor
import com.atlassian.jira.event.type.EventDispatchOption
import com.atlassian.jira.issue.Issue
import com.atlassian.jira.issue.IssueManager
import com.atlassian.jira.user.ApplicationUser
import com.onresolve.scriptrunner.runner.rest.common.CustomEndpointDelegate
import groovy.json.JsonOutput
import groovy.transform.BaseScript
import javax.ws.rs.core.MultivaluedMap
import javax.ws.rs.core.Response
@BaseScript CustomEndpointDelegate delegate
deleteIssue(httpMethod: "DELETE"){ MultivaluedMap queryParams ->
def issueId = queryParams.getFirst("issueKey")
IssueManager issueManager = ComponentAccessor.getIssueManager()
IssueService issueService = ComponentAccessor.getComponent(IssueService.class)
ApplicationUser currentUser = ComponentAccessor.getJiraAuthenticationContext().getLoggedInUser()
Issue issue = issueId ? issueManager.getIssueObject(issueId.toString()) : null
def deleteValid = issue ? issueService.validateDelete(currentUser,issue.id) : null
def deleted = deleteValid ? issueService.delete(currentUser,deleteValid,EventDispatchOption.ISSUE_DELETED, false) : null
def errors = deleted?.errors
def flag = []
if(errors){
flag = [
type : 'error',
title: "Error",
close: 'auto',
body : "Something went wrong"
]
}else{
flag = [
type : 'success',
title: "Issue Deleted",
close: 'auto',
body : "Issue Deleted"
]
}
return Response.ok(JsonOutput.toJson(flag)).build()
}
/**
* Created by jhoward on 10/10/2017.
*/
Thanks
Johnson Howard (Adaptavist)
Hello everyone, Hope everyone is safe! A few months ago we posted an article sharing all the new articles and documentation that we, the AMER Jira Service Management team created. As mentioned ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.