Hi Maira,
Welcome to the Coda Community!
If you have a “Create Issue” button in a table, you can add an option to it for a results column. I name mine “Results”. That will return the Jira ID and associated data…
Since we don’t return the full JSON data anymore, the following won’t work. You can make this result column a Jira Issue Column Type and it will sync in the issue information that you can then pull from to get any extra data you might need.
This is the return value that Coda receives from Jira, so if you have a Jira sync table, you an actually match up the two by this Issue ID. To get just the ID number out of this data, you can use this formula in a new column…
Since we don’t return the full JSON data anymore, the following won’t work. You can make this result column a Jira Issue Column Type and it will sync in the issue information that you can then pull from to get any extra data you might need.
Results.ParseJSON("#/Id")
The “Issue ID” that Jira sends back is actually a chunk of data with the ID, Key, and URL. So that formula pulls out the ID.