docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Use case: Unlink a Unity Project from a Jira Project Configuration

    Before you start

    1. Verify Permissions: Ensure you have permission to manage Jira integrations in your Unity Organization. Typically, this means being an admin or having specific collaboration settings access.
    2. Project Context: Know the Unity Project ID you want to unlink.
    3. Jira ProjectConfig ID: Obtain the unique identifier (GUID) of the Jira ProjectConfig to unlink from the Unity project.

    How do I...?

    To unlink a Unity project from a Jira ProjectConfig:

    1. Get the Project ID: Identify the Unity Project to unlink.
    2. Get the Jira ProjectConfig ID: Obtain the ProjectConfig ID to use for the request.
    3. Use the SDK: Call the UnlinkProjectAsync method in the Unity Collaboration SDK with the required properties.
    4. Confirm the Unlink: Ensure the Unity project is no longer associated with the Jira ProjectConfig. You may want to verify this in your project settings or integration dashboard.

    Example:

    await jiraManagementService.UnlinkProjectAsync(
        projectId: projectId,
        jiraProjectConfigId: jiraProjectConfigId,
        cancellationToken: cancellationToken);
    

    Error Handling

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

    Related Links

    • Link a Unity Project to a Jira Project Configuration
    • Create Project Config
    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)