Worth 360 Report
Get Worth 360 Report Details
Get Report by ID
This endpoint retrieves a specific report based on the provided report ID.
Request
No request body is required for this endpoint.
reportID
(path parameter) - The ID of the report to be retrieved.
Response
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"
}
}
}
}
}
}
}
}
}
GET
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Examples:
"{{report_id}}"
Response
200 - application/json; charset=utf-8
OK
The response is of type object
.