I am trying to figure out the correct syntax to create an update and delete webhook to communicate with Clarizen when the parameter is workItemId
--Update Webhook----
----Delete Webhook-----
The solution would be language dependent and, I'm sorry, but I don't 'speak' nodejs.
I do speak PHP and this is what I used
// Get the body information and write it to the file
$entityBody = file_get_contents('php://input');
http://php.net/manual/en/function.file-get-contents.php
The trick here is that I'm using "php://input" as the "filename" to get the body.
This returns the body in json format.
I'm sorry, but I don't know how to do it in some other language.
I don't think you can. You can only use the variable they list on this page:
https://developer.atlassian.com/jiradev/jira-apis/webhooks
${board.id}
${issue.id}
${issue.key}
${mergedVersion.id}
${modifiedUser.key}
${modifiedUser.name}
${project.id}
${project.key}
${sprint.id}
${version.id}
BUT the good news is that you get a body of the POST request and it has everything about that issue in it, including all the custom fields and their values.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
How do you access the body info?
I cannot find much help on the web other than this post, but I only see the variables in my request to server.
Using Nodejs:
exports.webhook = function(req, res) {
var hookURL = "https://hooks.slack.com/services/##########";
res.setHeader('Access-Control-Allow-Origin', '*');
res.setHeader('Access-Control-Allow-Methods', 'GET, POST');
res.setHeader('Access-Control-Allow-Headers', 'X-Requested-With,content-type');
res.setHeader('Access-Control-Allow-Credentials', true);
console.log(req) /// where is all the issue content?
var username = req.query.user_key
var projectkey = req.params.projectkey
var issuekey = req.params.issuekey
var message = "Issue '"+issuekey+"' in project '"+projectkey+"' has been modified by '"+username+"'."
var channel = "yourslackchannel"
var key = req.params.key
if (key && key == "#########################"){
slack = new Slack(hookURL,{
channel: "#"+channel,
username: "Jira Logger",
text: message,
icon_url: "./public/icon.jpg"
});
slack.notify(message, function(err, result){
console.log(err,result);
// res.send(result)
res.send("Sent to Slack: #"+channel+", "+message);
});
}else{
res.send("Unauthorized request");
}
};
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It sounds like you are getting the headers but not the body. This looks like it's goal is to get just some minimal info from the headers and send it to slack. I don't see anything here that is parsing jason or looks like it's accessing the body of POST.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you ever resolve this? Is it possible to send custom parameters to the webhook?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Join the largest European gathering of the Atlassian Community and reimagine what’s possible when great teams and transformative technology come together. Plus, grab your Super Fan ticket now and save over €1,000 on your pass before prices rise on 3 June.
Register nowOnline 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.