Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
mikecrengland
Creator III
Creator III

Tabular Reporting Task ID?

Where can I find the Task ID of a Tabular Report?

Labels (1)
1 Solution

Accepted Solutions
hugo_andrade
Partner - Specialist
Partner - Specialist

@mikecrengland ,

There are many fields with ID indeed! But the one you should target is the "id" itself.

"id": "66d7561949b0ca377d777b8a",

 

Live and Breathe Qlik & AWS.
Follow me on my LinkedIn | Know IPC Global at ipc-global.com

View solution in original post

7 Replies
Frank_S
Support
Support

You can find Report Task Execution ID's here. 
Working with report tasks | Qlik Cloud Help

 

If you need information about your reports, you may consider deploying the monitoring apps tool which includes the report analyzer.

Qlik Cloud Monitoring Apps Workflow Guide - Qlik Community - 2134140

 

What requirement are you trying to fill with a Report task ID?

 

Kind regards...

Please remember hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
hugo_andrade
Partner - Specialist
Partner - Specialist

Hi @mikecrengland ,

You can find that information on the /admin/events on the Qlik Cloud tenant, as well as through the APIs.

If you filter Event Type with com.qlik.reporting-task.executed, you will find the Reporting Tasks and their information.

I've pasted one example for you below:

{
    "appId": "bd99b319-9445-4794-986f-bfd46sca4b72",
    "createdDate": "2024-09-03T18:31:53Z",
    "creatorId": "649f2359se66066e9f61e75f",
    "description": "All Support tickets in last 48 hours: open, in progress, done.",
    "distributionchannels": [
        "email"
    ],
    "enabled": true,
    "error": "",
    "expiry": "",
    "hassectionaccess": false,
    "id": "66d7561949b0ca377d777b8a",
    "insightLink": "",
    "name": "JIRA Support Shifts Report",
    "ownerId": "649f2359de6d066e9f61e75f",
    "reportingServiceEventId": "25742c28-e682-48d8-a27f-6d0ccf6685b1:0",
    "resourceId": "66d7561949b0ca3777777b8a",
    "resourceLink": "",
    "resourceType": "reporting-task",
    "sharingTaskExecutionId": "68b9fdef6e2c42d2bc44fd36",
    "sharingTaskOwnerId": "649f2359de66066e9f61e75f",
    "sharingTaskType": "template-sharing",
    "spaceId": "6655f0513dee9101b81fd5a1",
    "status": "VALID",
    "thumbnail": "/api/v1/sharing-tasks/66d7561949b0ca3777777b89/executions/latest/files/",
    "traceId": "d5cca6c187dfc386444ff8cd97721695",
    "transports": [
        "email"
    ],
    "typeOfSpace": "shared",
    "workflowId": ""
}
Extensions
{
    "actor": {},
    "updates": []
}

Live and Breathe Qlik & AWS.
Follow me on my LinkedIn | Know IPC Global at ipc-global.com

Frank_S
Support
Support

Sharing tasks REST | Qlik Developer Portal

Please remember hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
hugo_andrade
Partner - Specialist
Partner - Specialist

Great finding @Frank_S !

Live and Breathe Qlik & AWS.
Follow me on my LinkedIn | Know IPC Global at ipc-global.com

mikecrengland
Creator III
Creator III
Author

Thanks Hugo! Which one is the ID of the actual task?

hugo_andrade
Partner - Specialist
Partner - Specialist

@mikecrengland ,

There are many fields with ID indeed! But the one you should target is the "id" itself.

"id": "66d7561949b0ca377d777b8a",

 

Live and Breathe Qlik & AWS.
Follow me on my LinkedIn | Know IPC Global at ipc-global.com

mikecrengland
Creator III
Creator III
Author

Thank you!