Job Scheduler - List Item Job Instances
Returns a list of job instances for the specified item.
Required Delegated Scopes
For item APIs use these scope types:
- Generic scope: Item.ReadWrite.All or Item.Read.All
- Specific scope: itemType.ReadWrite.All or itemType.Read.All (for example: Notebook.ReadWrite.All)
for more information about scopes, see scopes article.
Microsoft Entra supported identities
This API supports the Microsoft identities listed in this section.
Identity | Support |
---|---|
User | Yes |
Service principal | No |
Managed identities | No |
Interface
GET https://api.fabric.microsoft.com/v1/workspaces/{workspaceId}/items/{itemId}/jobs/instances
GET https://api.fabric.microsoft.com/v1/workspaces/{workspaceId}/items/{itemId}/jobs/instances?continuationToken={continuationToken}
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
item
|
path | True |
string uuid |
The item ID. |
workspace
|
path | True |
string uuid |
The workspace ID. |
continuation
|
query |
string |
A token for retrieving the next page of results. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
Request completed successfully. |
|
Other Status Codes |
Common error codes:
|
Examples
List item job instances example |
List item job instances with continuation example |
List item job instances example
Sample request
GET https://api.fabric.microsoft.com/v1/workspaces/4b218778-e7a5-4d73-8187-f10824047715/items/431e8d7b-4a95-4c02-8ccd-6faef5ba1bd7/jobs/instances
Sample response
{
"value": [
{
"id": "f2d65699-dd22-4889-980c-15226deb0e1b",
"itemId": "431e8d7b-4a95-4c02-8ccd-6faef5ba1bd7",
"jobType": "DefaultJob",
"invokeType": "Manual",
"status": "Completed",
"rootActivityId": "8c2ee553-53a4-7edb-1042-0d8189a9e0ca",
"startTimeUtc": "2024-06-22T06:35:00.7812154",
"endTimeUtc": "2024-06-22T06:35:00.8033333",
"failureReason": null
},
{
"id": "c0c99aed-be56-4fe0-a6e5-6de5fe277f16",
"itemId": "431e8d7b-4a95-4c02-8ccd-6faef5ba1bd7",
"jobType": "DefaultJob",
"invokeType": "Manual",
"status": "Completed",
"rootActivityId": "c0c99aed-be56-4fe0-a6e5-6de5fe277f16",
"startTimeUtc": "2024-06-22T06:35:00.7812154",
"endTimeUtc": "2024-06-22T07:35:00.8033333",
"failureReason": null
}
]
}
List item job instances with continuation example
Sample request
GET https://api.fabric.microsoft.com/v1/workspaces/4b218778-e7a5-4d73-8187-f10824047715/items/431e8d7b-4a95-4c02-8ccd-6faef5ba1bd7/jobs/instances
Sample response
{
"value": [
{
"id": "f2d65699-dd22-4889-980c-15226deb0e1b",
"itemId": "431e8d7b-4a95-4c02-8ccd-6faef5ba1bd7",
"jobType": "DefaultJob",
"invokeType": "Manual",
"status": "Completed",
"rootActivityId": "8c2ee553-53a4-7edb-1042-0d8189a9e0ca",
"startTimeUtc": "2024-06-22T06:35:00.7812154",
"endTimeUtc": "2024-06-22T06:35:00.8033333",
"failureReason": null
},
{
"id": "c0c99aed-be56-4fe0-a6e5-6de5fe277f16",
"itemId": "431e8d7b-4a95-4c02-8ccd-6faef5ba1bd7",
"jobType": "DefaultJob",
"invokeType": "Manual",
"status": "Completed",
"rootActivityId": "c0c99aed-be56-4fe0-a6e5-6de5fe277f16",
"startTimeUtc": "2024-06-22T06:35:00.7812154",
"endTimeUtc": "2024-06-22T07:35:00.8033333",
"failureReason": null
}
],
"continuationToken": "LDEsMTAwMDAwLDA%3D",
"continuationUri": "https://api.fabric.microsoft.com/v1/workspaces/4b218778-e7a5-4d73-8187-f10824047715/items/431e8d7b-4a95-4c02-8ccd-6faef5ba1bd7/jobs/instances?continuationToken=LDEsMTAwMDAwLDA%3D"
}
Definitions
Name | Description |
---|---|
Error |
The error related resource details object. |
Error |
The error response. |
Error |
The error response details. |
Invoke |
The item job invoke type. Additional invokeTypes may be added over time. |
Item |
An object representing item job instance |
Item |
|
Status |
The item job status. Additional statuses may be added over time. |
ErrorRelatedResource
The error related resource details object.
Name | Type | Description |
---|---|---|
resourceId |
string |
The resource ID that's involved in the error. |
resourceType |
string |
The type of the resource that's involved in the error. |
ErrorResponse
The error response.
Name | Type | Description |
---|---|---|
errorCode |
string |
A specific identifier that provides information about an error condition, allowing for standardized communication between our service and its users. |
message |
string |
A human readable representation of the error. |
moreDetails |
List of additional error details. |
|
relatedResource |
The error related resource details. |
|
requestId |
string |
ID of the request associated with the error. |
ErrorResponseDetails
The error response details.
Name | Type | Description |
---|---|---|
errorCode |
string |
A specific identifier that provides information about an error condition, allowing for standardized communication between our service and its users. |
message |
string |
A human readable representation of the error. |
relatedResource |
The error related resource details. |
InvokeType
The item job invoke type. Additional invokeTypes may be added over time.
Name | Type | Description |
---|---|---|
Manual |
string |
Job is invoked manually |
Scheduled |
string |
Job is scheduled |
ItemJobInstance
An object representing item job instance
Name | Type | Description |
---|---|---|
endTimeUtc |
string |
Job end time in UTC |
failureReason |
Error response when job is failed |
|
id |
string |
Job instance Id |
invokeType |
The item job invoke type. Additional invokeTypes may be added over time. |
|
itemId |
string |
Item Id |
jobType |
string |
Job type |
rootActivityId |
string |
Root activity id to trace requests across services |
startTimeUtc |
string |
Job start time in UTC |
status |
The item job status. Additional statuses may be added over time. |
ItemJobInstances
Name | Type | Description |
---|---|---|
continuationToken |
string |
The token for the next result set batch. If there are no more records, it's removed from the response. |
continuationUri |
string |
The URI of the next result set batch. If there are no more records, it's removed from the response. |
value |
A list of item job instances. |
Status
The item job status. Additional statuses may be added over time.
Name | Type | Description |
---|---|---|
Cancelled |
string |
Job cancelled |
Completed |
string |
Job completed |
Deduped |
string |
A job instance of the same job type is already running and this job instance is skipped |
Failed |
string |
Job failed |
InProgress |
string |
Job in progress |
NotStarted |
string |
Job not started |