Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

Introduction

Jira User Export app supports JSON for export. This means that Jira users can be exported to a .json file.

JSON export example

JSON export format
{
  "jiraUserObjects": [
    {
      "jiraId": 10000,
      "username": "admin",
      "fullName": "admin",
      "email": "admin@admin.com",
      "applicationKeys": [
        "jira-servicedesk",
        "jira-software"
      ],
      "applicationNames": [
        "JIRA Software",
        "JIRA Service Desk"
      ],
      "groups": [
        "jira-servicedesk-users",
        "jira-administrators",
        "jira-software-users"
      ],
      "userDirectory": "Jira Internal Directory",
      "active": true,
      "loginCount": 1203,
      "lastLoginTime": 1558464361900,
      "lastLogin": "2019-05-21 20:05"
    },
    {
      "jiraId": 10100,
      "username": "user_0",
      "fullName": "User_0 User_0_son",
      "email": "user_0@foo.com",
      "applicationKeys": [
        "jira-servicedesk",
        "jira-software"
      ],
      "applicationNames": [
        "JIRA Software",
        "JIRA Service Desk"
      ],
      "groups": [
        "jira-administrators"
      ],
      "userDirectory": "Jira Internal Directory",
      "active": true,
      "loginCount": 0,
      "lastLoginTime": 0,
      "lastLogin": "Never logged in"
    }
  ],
  "totalSize": 2,
  "pageSize": 2,
  "listDate": "21-05-2019 20:05:13"
}

  • No labels