Hello!
I'm on a free account, but want to know if there are special requirements to be able to post to update the Atlassian Teams field? Right now, when I use an API I'm getting an error when I try to post to that field.
What do I need on my account in order to change/update the Atlassian Team field on issues via API?
Thank you!
Hi @Ryan
Hi Ryan! The Atlassian Teams field is a custom field of type com.atlassian.teams:rm-teams-custom-field-team, and you can update it via the standard Jira REST API — no special plan is required for API access, but the Teams field must first be enabled for your site and project.
Here's how to update it:
/team/ (e.g., 36885b3c-1bf0-4f85-a357-c5b858c31de4).customfield_10001, but check your instance via GET /rest/api/3/field.PUT /rest/api/3/issue/{issueKey}
Body: { "fields": { "customfield_10001": { "id": "YOUR-TEAM-UUID" } } }
Hello @Ryan
Welcome to the Atlassian community.
To help you debug your issue we need more information.
The Team field in an issue can be updated via the REST API
What API endpoint are you using? Please provide a link to the documents you are referencing for this endpoint. You might find this documentation helpful.
https://developer.atlassian.com/platform/teams/components/team-field-in-jira-rest-api/
What error are you getting?
What parameters and payload are you providing when you call the endpoint?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello @Ryan
That what @Trudy Claspill and @Ajay _view26_ saying.
There's no special account requirement, but the field must be enabled and you need the correct customfield_xxxxx plus the team UUID in the payload.
Without you posting here specific Failure, we can't answer what's going wrong.
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.