This endpoint retrieves a specific report based on the provided report ID.
No request body is required for this endpoint.
reportID
(path parameter) - The ID of the report to be retrieved.The response will be a JSON object with the following schema:
{
"type": "object",
"properties": {
"status": {
"type": "string"
},
"message": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"id": {
"type": "string"
},
"report_type_id": {
"type": "integer"
},
"status": {
"type": "string"
},
"log": {
"type": ["string", "null"]
},
"created_at": {
"type": "string"
},
"created_by": {
"type": "string"
},
"updated_at": {
"type": "string"
},
"triggered_by": {
"type": "string"
},
"triggered_id": {
"type": "string"
},
"report_type": {
"type": "object",
"properties": {
"core_report_types": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"code": {
"type": "string"
},
"label": {
"type": "string"
}
}
}
}
}
}
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
"{{report_id}}"
OK
The response is of type object
.