Hi,
I know that inserting a jira macro to confluence via rest api is by passing as body the following code:
<ac:structured-macro ac:name="jira" ac:schema-version="1">
<ac:parameter ac:name="jqlQuery">key=JIRA-1234</ac:parameter>
</ac:structured-macro>
I have also tried the following code:
<ac:parameter ac:name="display">"single issue"</ac:parameter>
but it does not work.
Any tips?
Or is this even possible?
Soo, I just found the solution to my problem, a very simple tweak to the code above.
<ac:structured-macro ac:name="jira" ac:schema-version="1">
<ac:parameter ac:name="key">JIRA-1234</ac:parameter>
</ac:structured-macro>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.