curl --request POST \
--url https://api.example.com/v1/table/{table_uuid}/add-enrichment \
--header 'Content-Type: application/json' \
--header 'x-apikey: <x-apikey>' \
--data '
{
"enrichment": 1,
"mapping": {
"param1": {
"value": "column1",
"type": "mapping"
},
"param2": {
"value": "simple_value",
"type": "simple"
}
}
}
'