docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Use case: Retrieve Jira Configurations for an Organization

    Before you start

    1. Verify Permissions: Confirm that you have permission to access Jira configurations for the Unity organization. Typically, this means being a member or organization admin.
    2. Organization ID: You'll need the unique Unity Organization ID to query for associated Jira configurations.
    3. Understand Scope: This operation returns Jira ServerConfigs that are available or linked to the specified Unity Organization.

    How do I...?

    To get all Jira configurations available for a Unity Organization, follow these steps:

    1. Get the Organization ID: Identify the Unity Organization for which you want to fetch Jira configurations.
    2. Use the SDK: Call the ReadConfigsAsync method in the Unity Collaboration SDK with the required properties.
    3. Process the Response: The response will contain information about available ServerConfigs that can be used or linked.

    Example:

    var configs = await jiraConfigService.ReadConfigsAsync(
        organizationId: organizationId,
        cancellationToken: cancellationToken);
    

    Error Handling

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

    Related Links

    • Get Configs for Project
    • Create Server Config
    • 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)