Authorizations
Path Parameters
The Heron ID of the end user to enrich
Body
application/json
The name of the enricher to execute
Example:
"industry_prediction"
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": {},
"status": "succeeded"
}
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": {},
"status": "succeeded"
}
The Heron ID of the end user to enrich
The name of the enricher to execute
"industry_prediction"
Was this page helpful?