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)
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.