Report Query

The GET /report method lists the reports requested and available to download.

Response example:

{
  "report": [
    {
      "report_name": "accounts",
      "file_name": "accounts_20230301_20230605112617001.csv",
      "requested_at": "2023-06-05T11:26:17.001Z"
      "status": "pending",
      "url": "",
      "created_at": "",
      "expires_at": ""
    },
  {
      "report_name": "accounts",
      "file_name": "accounts_20230301_20230604112617325.csv",
      "requested_at": "2023-06-04T11:26:17.325Z"
      "status": "available",
      "url": "https://store-files-in-s3.s3.ap-south-1.amazonaws.com/accounts_20230301_20230604112617325.csv",
      "created_at": "2023-06-07T11:26:17.325Z",
      "expires_at": "2023-06-08T11:26:17.325Z"
    },  
  ]
}

Last updated