princenyeche / jiraone

A REST API Implementation to Jira Cloud APIs for creating reports and for performing other Jira queries.
https://jiraone.readthedocs.io
MIT License
25 stars 11 forks source link

Importing Release Versions and Users via CSV in Jira Data Center. #146

Open kalupator opened 3 days ago

kalupator commented 3 days ago

Hello! 1) During import, Release Versions are created with only the version number, but all other columns are empty. Maybe, Is there a way to import all release versions with all columns? image

2) Is it possible to export via jiraone users with emails and groups via csv? Now when loading the csv I am asked to specify one domain for email for all users, which is extremely inconvenient. Screenshot 2024-12-01 113551

I tried to find the answer in the documentation, but it seems that this functionality is only available for Jira Cloud: https://jiraone.readthedocs.io/en/latest/apis.html#user

This class helps to Generate the No of Users on Jira Cloud

I know that there is no such problem with json import, because there you can explicitly specify all users and their groups (I have used this before):

    "users": [
        {
            "name": "user.name",
            "groups": [
                "jira-software-users",
                "some-users-group"
            ],
            "fullname": "User Name",
            "email": "user.name@domain.com"
        }
    ]

But I can't find such functionality for csv in jiraone.