It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Hi,
I created a custom field in Service Desk. My customer will insert some unique value in this field while creating a ticket in service desk.
I want to add custom script for this custom field. I will use this field to verify its value through a 3rd party API. I have the code but I don't know where to add this custom script for the custom field.
<script>
$(document).on('click', '.aui-button.aui-button-primary', function (e) {
$.ajax({
url: API_URL
dataType: "json",
method: 'post',
data: {
'action': ENVATO_API,
'value': API_KEY
},
success: function (data) {
if (data.success) {
return true;
} else {
return false;
console.log('Invalid envato key')
}
},
error: function (errorThrown) {
console.log(errorThrown);
}
});
})
</script>
Hello,
I think you should use Adaptivist ScriptRunner. There are behaviours for customer portals. You will be able to attach such a behaviour to your field and do rest calls within the behaviour. You can find more information here
https://scriptrunner.adaptavist.com/latest/jira/behaviours-servicedesk.html#_example
Hi,
I think I need to install the behaviours plugin but it seems like it's not available for cloud Jira. It's only available for hosted Jira.
If so is there any other way to accomplish my goal?
Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is impossible to add custom javascript to Cloud. I guess you can not accomplish what you want to do.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello, is the issue resolved? I also want to add script in my custom field but I don't know where to add. I'm also using JIRA Cloud
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you a whiz at handling tickets and looking at how you can further optimize your workflow with automation? Do you tackle detailed customer support questions while simultaneously getting flooded wi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.