Versions Compared

Key

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

...

Table of Contents

Introduction

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

You can read more about the JSON format here. https://www.json.org/

JSON export example

JSON export format
Code Block
linenumbers
languagejs
themeRDark
titleJSON export format
true
{
  "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": 60212,
      "lastLoginTime": 1559980856413,
      "lastLogin": "2019-06-08 10:06",
      "userProperties": {},
      "preferredLanguage":"Default"
    },
    {
      "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"
      },
      "preferredLanguage":"Default"
    }
  ],
  "totalSize": 2,
  "pageSize": 2,
  "listDate": "08-06-2019 12:06:35"
}

...