I found the Rest API for generating descriptions to assets based on its name by using the web browser's debugger. See below. Is there an equivalent Workflow Java API too? I want to write a workflow to generate an Excel document of all the generative descriptions for all the column types in a domain and then have a steward review and reimport them. This is faster than one by one the way it is now. If there's not a Java workflow API I can do this is in a script too using Rest: Rest Generative AI URL Endpoint https://your_dgc_instance/rest/attributeGenration/v1/drafts/generate HTTPS Post {attributeTypeId: "your_attr_id, "assetIds" : ["Asset:your_asset_id"], "forceRefresh": false} HTTPS Rest Response: [{"id": "response_id", "attributeTypeId": "attr_type_id", "assetId": "your_asset_id", "value": "generated AI value}]