Hello, trying to use ConfiForms to create a form for submitting an issue to a project, but am getting stuck on a custom field. ID for the custom field is 11614 and this is what I'm using to set the value according to which one the user chooses:
"customfield_11614": "[entry.requesttype.label]
I receive the following error when attempting to submit the form:
Tried several different combinations with no luck. Any suggestions?
Hi @Ron M
You seems to be missing the closing quote
"customfield_11614": "[entry.requesttype.label]",
Alex
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Here's the error:
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This just tells you that the mapping for the "customfield_11614" field is not correct and it expects an id or a value that Jira understands
What field type in Jira does the "customfield_11614" has?
https://developer.atlassian.com/server/jira/platform/jira-rest-api-examples/
Alex
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Have a look at the link I have shared in my previous comment
The mapping needs to be something like
"customfield_11614": { "value": "[entry.requesttype.label]" },
Alex
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Alex,
I have setup "Epic Link" field with "jira issue" field type in confiform but epic link value not captured in created jira.
Kindly help. I tried below help it does not work. Iam using confluence data center
"customfield_11614": { "value": "[entry.requesttype.label]" },
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Does not the epic link expect an issue key as an input?
Something like a
"customfield_11614": "ISSUEKEY-123",
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
What’s the field name in ConfiForms for this field and what type it has in ConfiForms?
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.
It is a filed label, I am asking about the filed name you have for this field in ConfiForms Field Definition
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
"customfield_11614": "[entry.EpicLink]",
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Alex,
Still iam not getting epic link value update in jira ticket, Kindly help
EpicLink id: - 10012
{ "fields": { "project": { "key": "CITE" }, "summary": "[entry.ProjectTitle]", "description": "\n\n- Demand Id: CITE-[entry.UniqueID]\n- Project Title: [entry.ProjectTitle]\n- Business Contact: [entry.BusinessContact]\n- System Interface Contact: [entry.SystemInterfaceContact]\n- Description: [entry.Description]\n\n Testing Timelines or Sprints: \n\n- Phase: [entry.Phase]\n- StartDate: [entry.StartDate]\n- EndDate: [entry.EndDate]\n- No. of Weeks: [entry.Numberofweeks]\n- UserRequirement: [entry.UserRequirement]\n- Comments: [entry.Comments]\n\n", "issuetype": { "name": "User Story" }, }, "customfield_10012":"[entry.EpicLink]", }
tried this as well ->
"customfield_10012":"Epic Link [entry.EpicLink.label]",
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Do you have a field in ConfiForms with a name EpicLink and is it of type Jira issue?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
So, what happens when you set it's value and submit the form and have this mapping added to the JSON mapping?
"customfield_10012":"[entry.EpicLink]"
(note that you have an extra , .. it is breaking the JSON object, as it is the last property you add)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Alex,
Still Epic link Value not reflect in jira issue. Kindly help. This is the system field in jira do we need to get any edit permission from admin
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Where did you find that the field
customfield_10012
is an epic link field name?
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.