chocolatey-licensed-issues icon indicating copy to clipboard operation
chocolatey-licensed-issues copied to clipboard

Central Management API - Add To Result Field of Create OutdatedReports API Call

Open ryanrichter94 opened this issue 3 years ago • 0 comments

Description of Enhancement

Would like to have the reportId, date, and status added to the result response from the following API call. /api/services/app/OutdatedReports/Create

Reason for request is to provide the added result fields to data generated by call. So that other external service can generate reports based off the API calls made.

Examples

Current results from API call:

{
  "result": null,
  "targetUrl": null,
  "success": true,
  "error": null,
  "unAuthorizedRequest": false,
  "__abp": true
}

Suggested results:

{
  "result": {
                “reportId”,”80”,              
                “status”, “created”
                “date”, “UTC date”
 }            
  "targetUrl": null,
  "success": true,
  "error": null,
  "unAuthorizedRequest": false,
  "__abp": true
}

References

┆Issue is synchronized with this Gitlab issue by Unito

ryanrichter94 avatar Nov 10 '21 14:11 ryanrichter94