Request
Body Params  application/json
{
    "integration_id": 0,
    "rules": [
        {
            "kind": "extraction",
            "if": [
                {
                    "key": "title",
                    "oper": "IN",
                    "vals": [
                        "string"
                    ]
                }
            ],
            "settings": {
                "g_json": null
            }
        }
    ]
}
Request Code Samples
curl --location --request POST 'http://prod-cn.your-api-server.com/enrichment/upsert' \
--header 'Content-Type: application/json' \
--data-raw '{
    "integration_id": 0,
    "rules": [
        {
            "kind": "extraction",
            "if": [
                {
                    "key": "title",
                    "oper": "IN",
                    "vals": [
                        "string"
                    ]
                }
            ],
            "settings": {
                "g_json": null
            }
        }
    ]
}'
Responses
application/json {
    "error": {
        "code": "InvalidParameter",
        "message": "string"
    }
}
Modified at 2025-01-22 10:14:38