Represents a job queue log entry in Business Central.
Note
For information about enabling APIs for Business Central see Enabling the APIs for Dynamics 365 Business Central.
Methods
| Method | Return Type | Description |
|---|---|---|
| GET jobQueueLogEntry | jobQueueLogEntry | Gets a job queue log entry object. |
Properties
| Property | Type | Description |
|---|---|---|
| id | GUID | The unique ID of the job queue log entry. Non-editable. |
| jobQueueEntryId | GUID | |
| userId | string | |
| startDateTime | datetime | |
| endDateTime | datetime | |
| objectIdToRun | integer | |
| objectTypeToRun | string | |
| status | string | Specifies the status of the job queue log entry. |
| description | string | Specifies the description of the job queue log entry. |
| errorMessage | string | The error message provided when a fail occurs. |
| jobQueueCategoryCode | string | |
| errorCallStack | stream | |
| parameterString | string | |
| systemTaskId | GUID | |
| userSessionId | integer | |
| userServiceInstanceId | integer | |
| lastModifiedDateTime | datetime | The last datetime the job queue log entry was modified. Read-Only. |
JSON representation
Here's a JSON representation of the jobQueueLogEntry resource.
{
"id": "GUID",
"jobQueueEntryId": "GUID",
"userId": "string",
"startDateTime": "datetime",
"endDateTime": "datetime",
"objectIdToRun": "integer",
"objectTypeToRun": "string",
"status": "string",
"description": "string",
"errorMessage": "string",
"jobQueueCategoryCode": "string",
"errorCallStack": "stream",
"parameterString": "string",
"systemTaskId": "GUID",
"userSessionId": "integer",
"userServiceInstanceId": "integer",
"lastModifiedDateTime": "datetime"
}