Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Introduction

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

JSON export example

Code Block
languagejs
themeRDark
titleJSON export format
linenumberstrue
{
  "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": 120360212,
      "lastLoginTime": 15584643619001559980856413,
      "lastLogin": "2019-0506-2108 20:05"
10:06",
      "userProperties": {}
    },
    {
      "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-servicedesk-users",
        "jira-administrators",
        "jira-software-users"
      ],
      "userDirectory": "Jira Internal Directory",
      "active": true,
      "loginCount": 0,
      "lastLoginTime": 0,
      "lastLogin": "Never logged in",
      "userProperties": {
        "twitter": "@twitter_0",
        "mobile": "+4572118456",
        "fax": "+4578468574"
      }
    }
  ],
  "totalSize": 2,
  "pageSize": 2,
  "listDate": "2108-0506-2019 2012:0506:1335"
}