I think there is no UiPath activity available to get the ingestion status of a storage‑bucket index.
You can retrieve the ingestion status using the UiPath Data Service Index API.
Use this endpoint: GET https://cloud.uipath.com/{organizationId}/{tenantId}/dataservice/indexes/{indexId}
Include the access token in the header: Authorization: Bearer {token}
The API response returns the current ingestion status such as Pending, InProgress, Completed, or Failed.
Pls try to implement.
Right now there’s no UiPath activity or public API that lets you programmatically check a Context Grounding index’s ingestion status. However you can use the Index Completed trigger to start a process automatically when the index finishes syncing, instead of polling a status. Please refer to this for more info - https://docs.uipath.com/activities/other/latest/integration-service/uipath-uipath-airdk-index-completed
There is no UiPath activity to get the ingestion status of a Storage Bucket index.
You need to use the Orchestrator API. You can check the index status using a GET call from the Index endpoints in Orchestrator Swagger, using the index ID and an HTTP Request activity with proper authentication.
You can’t check the status of the ingestion but we have an activity Wait for an Event on UiPath GenAI Activities and Resume. This activity monitors the Index Completed event to check when the index sync completes. It does this by verifying the output of the trigger to ensure it is successful, i.e., new files have been added.