curl --request POST \
--url https://app.herondata.io/api/end_user_enrichers/{end_user_heron_id}/enrich \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"enricher_name": "industry_prediction"
}'
{
"enriched_at": "2023-11-07T05:31:56Z",
"enricher_name": "<string>",
"result": {}
}
Executes a specified enricher for an end user and returns the enrichment result. The enrichment result is automatically saved to the database.
curl --request POST \
--url https://app.herondata.io/api/end_user_enrichers/{end_user_heron_id}/enrich \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"enricher_name": "industry_prediction"
}'
{
"enriched_at": "2023-11-07T05:31:56Z",
"enricher_name": "<string>",
"result": {}
}
The Heron ID of the end user to enrich
Enricher executed successfully
The response is of type object
.
Was this page helpful?