Obtains information about the importing thread. Use the following path format to access bulk import information.
Any Jira user can perform the Getting Bulk Import Information API call.
url
{JiraBaseURL}/rest/gitplugin/1.0/configuration/progress.json
method
GET
Parameters
thread_id
Integer. Required.
Input a thread ID to access information about the specific thread process.
Response
JSON
Returns the status information of the import process.
Download sample file
Right click the link and download the file below:
configuration_progress.py
Example:
http://jira.example.org/rest/gitplugin/1.0/configuration/progress.json?thread_id=123
Response example:
{
"success":false,
"finished":true,
"progressEntries":[{
"prcntDouble":0.0,
"prcntInteger":0,
"error":false,
"message":"Creating repository [email protected]:user/test-repo.git"
},{
"error":true,
"message": "java.lang.NullPointerException"
},{
"prcntDouble":100.0,
"prcntInteger":1042,
"error":false,
"message":"Resolving deltas"
}
]
}
Usage:
user@home:~$ python configuration_progress.py 1058
{"success":false,"finished":true,"progressEntries":[{
...
Bulk Change REST APIs
-
Bulk Export (Git Integration for Jira Data Center)
-
Bulk Ixport (Git Integration for Jira Data Center)
-
Get Bulk Import Information (this page)