Queue Log Detail
This endpoint retrieves the detailed log information for a specific quality report queue record identified by its unique ID. The response includes a list of detailed log entries associated with the specified queue log.
Permissions
Permission Type Permissions Delegated/Authenticated Account A valid Bearer token
HTTP Request
Use Beluga Box API base URL
GET /api/queuelog/{id}
Request Headers
Header Value Authorization Bearer {token}Content-Type application/json
Query Parameters
Parameter Data Type Description id integer Required. The unique identifier of the queue log record.
Request Body
Don't supply a request body for this method.
Response
On a successful request, the API returns an HTTP 200 OK status with a JSON array of QueueLogDetailResponse objects
HTTP/1.1 200 OK
Content-Type: application/json
[
{
"id": 0,
"queueLogId": 0,
"description": "string",
"errorCode": 0,
"createdUtcDate": "0001-01-01T00:00:00Z"
}
]