Skip to main content
GET
/
integration-execution
/
headless-executions
/
item
/
:id
Get headless enrichment execution by id
curl --request GET \
  --url http://api.gu1.ai/integration-execution/headless-executions/item/:id \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "item": {}
}
Part of the headless flow under /integration-execution. The id is the audit row UUID from List headless executions.

Overview

Returns one audit row by UUID, including merged resultSummary when the row is successful and a cache entry still exists (hydrates legacy audit rows that stored only a short summary).

URL

GET https://api.gu1.ai/integration-execution/headless-executions/item/{auditId}

Path parameters

auditId
uuid
required
The id field from headless_enrichment_execution_audit (returned in list items).

Response

success
boolean
true when found.
item
object
Full audit fields for the row, including resultSummary (from result_summary_json, possibly enriched from headless_enrichment_cache when applicable). On successful enrichments, resultSummary may include result with raw and mapped (same envelope as the execute endpoint).

Errors

404 if the id does not exist or does not belong to the organization.