You can update Jira issue from ConfiForms, you just need to know the issue key (store it with your record).
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Setting up a call to Jira REST API that deletes the issue (https://docs.atlassian.com/software/jira/docs/api/REST/7.6.1/#api/2/issue-deleteIssue) via Applink Service IFTTT action
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.
This link doesn't work anymore? Is there a better one than this? https://wiki.vertuna.com/display/CONFIFORMS/Configuring+ConfiForms+IFTTT+actions#ConfiguringConfiFormsIFTTTactions-UpdateJiraIssue
We definitely need to access existing Jira tickets to modify them with Confiforms.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi,
The functionality is still there.
But it is true that the link has changed - https://wiki.vertuna.com/display/CONFIFORMS/Configuring+ConfiForms+IFTTT+actions+and+rules#ConfiguringConfiFormsIFTTTactionsandrules-UpdateJiraIssue
Sorry about that
Alex
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried to update JIRA status didn't work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
And what exactly did not work? Any error message you have seen? Could you share what JSON you have tried to post? And does it work when you use it outside ConfiForms (Jira REST API)?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Outside Confiform, i used JIRA api to change the Issue Status ( Perfectly Working )
https://testjirahost/jira/rest/api/latest/issue/12345/transitions?expand=transitions.fields
body: {"transition": {"id": "41" }}
through Confiform, it not working and there is no error on the page.
Below is the code/value am using in IFTTT
"status": { "name": "Backlog" }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Well, transitions are not UPDATE to jira issue! This a completely different API, see yourself
This can be invoked through "AppLink Service"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Yeah, that's what am trying to use AppLinkService, but not sure how to use transition id in there
if you have any reference example, that would be nic.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Is that possible to help on other request as well?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
URL: https://testjirahost/jira/rest/api/latest/issue/12345
ERROR: com.atlassian.sal.api.net.ResponseException: Error communicating with Jira, Status: 405 with message: and response: ''
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You are missing the "No Format" macro to put your JSON contents
Also, see how the transitions API should be executed as per documentation https://docs.atlassian.com/software/jira/docs/api/REST/8.5.5/#api/2/issue-doTransition
This is really has nothing to do with ConfiForms... ConfiForms here is just the way to pass the request to Jira... please see the documentation for Jira REST API.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
AppLinkService with below format worked.
https://testjirahost/jira/rest/api/latest/issue/12345/transitions?expand=transitions.fields
IFTTT rule with NO Format
{"transition": {"id": "41" }}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
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.