docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Use case: Search Jira Issues

    Before you start

    1. Verify Permissions: Ensure you have permissions to view issues in the linked Jira project. This typically requires a valid Jira user account with browse/search rights.
    2. Linked Jira Configuration: Confirm that the Unity project is linked to a valid Jira ProjectConfig via a ServerConfig.
    3. Jira Project Context: Ensure the Jira Project ID and configuration context are valid and active.
    4. Search Query: Prepare your search query or filter criteria (e.g., text, status, assignee).

    How do I...?

    To search for Jira issues from a Unity project, follow these steps:

    1. Ensure a Jira Link Exists: Your Unity project must already be linked to a Jira ProjectConfig.
    2. Prepare the search query: Define your search string or filter parameters as needed.
    3. Use the SDK: Call the SearchIssuesAsync method in the Unity Collaboration SDK with the required properties.
    4. Process the Response: Iterate through the returned issues and extract relevant fields (e.g., key, summary, status).

    Example:

    var query = "status='In Progress'";
    var results = await jiraIssueService.SearchIssuesAsync(
        projectId: projectId,
        jiraProjectConfigId: jiraProjectConfigId,
        query: query,
        includeSubTasks: true,
        cancellationToken: cancellationToken);
    

    Error Handling

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

    Related Links

    • Get Issue Details
    • Create Issue
    • Get Issue Types
    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)