I'm trying to pass in the value of a jiraIssueField I define as a module into a webPanel item as a context parameter.
I've defined modules here:
I reference the custom field as addonkey__customfieldkey (separated by double underscore) in atlassian-connect.json
"modules": {
"jiraIssueFields": [
{
"description": {
"value": "Client email custom field"
},
"type": "string",
"name": {
"value": "Client Email"
},
"key": "email"
}
],
"webPanels": [
{
"key": "profile",
"location": "atl.jira.view.issue.right.context",
"name": {
"value": "Profile"
},
"url": "/profile?clientEmail={addonkey__email}"
}
]
}
The value being passed is NULL though.
Is there anything I'm missing? Is there a prefix to reference custom fields in the URL for the webPanel?
Appreciate your help