メインコンテンツまでスキップ

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 TypePermissions
Delegated/Authenticated AccountA valid Bearer token

HTTP Request

Use Beluga Box API base URL

GET /api/queuelog/{id}

Request Headers

HeaderValue
AuthorizationBearer {token}
Content-Typeapplication/json

Query Parameters

ParameterData TypeDescription
idintegerRequired. 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"
}
]