GET
/
reports
/
{reportID}
curl --request GET \
  --url https://api.joinworth.com/report/api/v1/reports/{reportID} \
  --header 'Authorization: Bearer <token>'
{
  "status": "success",
  "message": "Report details fetched successfully",
  "data": {
    "id": "06cf2b4b-51fc-4e7f-8f60-e2c2ab161f23",
    "report_type_id": 1,
    "status": "REQUESTED",
    "log": null,
    "created_at": "2025-04-10T10:41:50.398Z",
    "created_by": "fe879c59-f9e4-4796-9a63-38927541f0d7",
    "updated_at": "2025-04-10T10:41:50.398Z",
    "triggered_by": "CUSTOMER",
    "triggered_id": "815f078a-2bc7-4fa9-84cb-b4e0c62a504f",
    "file_path": null,
    "report_type": {
      "core_report_types": {
        "id": 1,
        "code": "business_report",
        "label": "Business Report"
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

reportID
string
required
Example:

"{{report_id}}"

Response

200 - application/json; charset=utf-8
OK
status
string
required
message
string
required
data
object
required
Example:
{
  "id": "06cf2b4b-51fc-4e7f-8f60-e2c2ab161f23",
  "report_type_id": 1,
  "status": "REQUESTED",
  "log": null,
  "created_at": "2025-04-10T10:41:50.398Z",
  "created_by": "fe879c59-f9e4-4796-9a63-38927541f0d7",
  "updated_at": "2025-04-10T10:41:50.398Z",
  "triggered_by": "CUSTOMER",
  "triggered_id": "815f078a-2bc7-4fa9-84cb-b4e0c62a504f",
  "file_path": null,
  "report_type": {
    "core_report_types": {
      "id": 1,
      "code": "business_report",
      "label": "Business Report"
    }
  }
}