{ "insight_name": "Updated Name" }{ "insight_description": "New description" }{ "status": "inactive" }{ "rules": [...] }curl --location --globoff --request PATCH 'https://platform-api.convirza.com/v3/custom-insights/{id}' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"insight_name": "Updated Missed Opportunity",
"insight_description": "Updated description for identifying potential missed sales opportunities",
"status": "active",
"rules": [
{
"indicator_id": 38,
"condition_type": "=",
"condition_value": "100",
"condition_join_type": "AND",
"condition_order": 1
}
]
}'{
"code": 200,
"message": "Success",
"data": {
"insight_id": 1,
"org_unit_id": 123,
"insight_name": "High-Value Missed Opportunities",
"insight_description": null,
"status": "active",
"is_system_default": false,
"created_at": "2026-04-01T10:30:00.000Z",
"created_by": 456,
"updated_at": null,
"updated_by": null,
"deleted_at": null,
"deleted_by": null,
"rules": [
{
"rule_id": 1,
"custom_insight_id": 101,
"indicator_id": 38,
"data_field": null,
"condition_type": "=",
"condition_value": "100",
"condition_join_type": "AND",
"condition_order": 1
}
]
},
"request_id": "550e8400-e29b-41d4-a716-446655440000",
"timestamp": "2026-01-20T12:34:56.789Z"
}