GET /rest/tis/report/1.0/api/file/

Details of a single async file export in the system.

Request

<jira_url>/rest/tis/report/1.0/api/file/<export_id>


Parameters

Parameter

Description

Required

Value Samples

export_idThe id of the file export that you want to query the information forYes

d57e59ca-568a-43a0-8baa-2b86a404d1fc


Example

https://192.168.0.1/rest/tis/report/1.0/api/file/d57e59ca-568a-43a0-8baa-2b86a404d1fc

Responses

Success

HTTP 200

Returns a JSON that contains detailed information of a file export.

{
    "exportId": "c960b836-516b-45ac-b707-170114bdef74",
    "created": "24/Aug/20 5:23 PM",
    "completed": 23,
    "total": 23,
    "downloadLink": "https://192.168.0.1/rest/tis/report/1.0/api/file/c960b836-516b-45ac-b707-170114bdef74/download",
    "status": "Successful"
}

Export Not Found

HTTP 404

When an export with the given export_id is not found. The export_id might be invalid or the export might belong to another user

{
    "message": "The export with id 29c33054-64b3-44e5-8e01-2c71a7e4s could not be found or you do not have permission to view it.",
    "statusCode": 404,
    "pluginVersion": "4.9.0.1",
    "time": "2020-09-04 16:21:28"
}
  • No labels