docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Use case: Retrieve Jira Issue Types

    Before you start

    1. Verify Permissions: Ensure your Jira account has permission to view issue types in the linked Jira project. Access is typically granted through role-based permissions in Jira.
    2. Project Must Be Linked: The Unity project must be linked to a Jira ProjectConfig to retrieve issue types through the Unity Collaboration API.
    3. Jira Project Context: Ensure the Jira Project ID and configuration context are valid and active.

    How do I...?

    To get the list of Jira issue types for your Unity project:

    1. Ensure Project Is Linked: Confirm that your Unity project is connected to a Jira ProjectConfig.
    2. Use the SDK: Call the GetIssueTypesAsync method in the Unity Collaboration SDK with the required properties.
    3. Process the Response: Extract the list of issue types from the response.

    Example:

    var issueTypes = await jiraIssueService.GetIssueTypesAsync(
        projectId: projectId,
        jiraProjectConfigId: jiraProjectConfigId,
        cancellationToken: cancellationToken);
    

    Error Handling

    • 400 Bad Request: Invalid input.
    • 401 Unauthorized: Authentication required.
    • 403 Forbidden: Insufficient permissions.

    Related Links

    • Create Issue
    • Get Issue Details
    • Search Issues
    In This Article
    Back to top
    Copyright © 2025 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)