Use case: Unlink a Unity Project from a Jira Project Configuration
Before you start
- 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.
- Project Context: Know the Unity Project ID you want to unlink.
- 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:
- Get the Project ID: Identify the Unity Project to unlink.
- Get the Jira ProjectConfig ID: Obtain the ProjectConfig ID to use for the request.
- Use the SDK: Call the
UnlinkProjectAsyncmethod in the Unity Collaboration SDK with the required properties. - 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.