curl --request GET \
--url https://app.herondata.io/api/end_user_enrichers/{end_user_heron_id}/enricher_results/{enricher_name} \
--header 'x-api-key: <api-key>'
{
"enriched_at": "2023-11-07T05:31:56Z",
"enricher_name": "<string>",
"result": {},
"status": "succeeded"
}
Retrieve the latest result for a specific enricher and end user
curl --request GET \
--url https://app.herondata.io/api/end_user_enrichers/{end_user_heron_id}/enricher_results/{enricher_name} \
--header 'x-api-key: <api-key>'
{
"enriched_at": "2023-11-07T05:31:56Z",
"enricher_name": "<string>",
"result": {},
"status": "succeeded"
}
The heron ID of the end user
The name of the enricher
Successfully retrieved enricher result
The response is of type object
.
Was this page helpful?