I am unable to create a Jira Story from one of my Copilot Studio topic flows.
It is not clear whether the problem is with the Jira API design or with Copilot Studio itself.
I am specifically stuck on how to pass the summary and description fields when using the Create a new issue (V3) action.
The documentation and in-product guidance are very limited, which makes it difficult to understand and resolve these errors.
Can someone please help by explaining how to pass the bare minimum required fields, such as summary and description, in the Item payload so that a Jira Story can be created successfully?
Thanks !
Hey @Manjunath CM ,
If you're looking at the official documentation, the minimum required fields in (general) payload are:
project (by key or id)
issuetype (by name or id, e.g., "Story")
summary
description (this might be optional as well)
Few tips here:
Can you maybe share which errors you're getting when you try to post a payload?
Cheers,
Tobi
I don’t want to pass any custom fields and just want to try creating a Jira ticket using the bare minimum values with Create a new issue (V3).
My understanding is that project, issue type (ID), and summary are the mandatory fields required for issue creation, and I’d like to know if this is correct.
I’m unable to assign any value to Item since it is a dynamic type.
I’m new to agent creation, so apologies if I’m missing something basic.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Manjunath CM , also be aware that if you use a user token you need to use the as base URL:
<yoursite>.atlassian.net/rest/api/3/issue
But if you use a service account, the URL is different:
https://api.atlassian.com/ex/jira/<CLOUD_ID>/rest/api/3/issue
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have created new connection using Jira API token on Jira Connector.
And using URL in the format..
<yoursite>.atlassian.net/rest/api/3/issue
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.