v1
latestOpenAPI 3.1.02026-07-2617125852.3 KBSuperSearchEnrichment
Create an enrichment
Create an enrichment for a specific resource (list or campaign). This is the main endpoint for adding enrichments to resources. The enrichments are automatically run after creation.
post/api/v2/supersearch-enrichment/
Request body
Example request
{
"resource_id": "01234567-89ab-cdef-0123-456789abcdef",
"type": "email_verification",
"limit": 100,
"custom_flow": [
"instantly"
],
"integration_actions": {
"findymail": {
"findymail_find_email": {
"mapping": {
"first_name": "firstName",
"last_name": "lastName",
"domain": "website"
}
}
}
}
}Response
Default Response
Example response
{
"id": "01234567-89ab-cdef-0123-456789abcdef",
"limit": 100,
"organization_id": "01234567-89ab-cdef-0123-456789abcdef",
"resource_id": "01234567-89ab-cdef-0123-456789abcdef",
"enrichment_payload": {
"joblisting": true,
"email_verification": true,
"work_email_enrichment": true,
"fully_enriched_profile": true,
"custom_flow": [
"instantly"
]
}
}