curl --request PATCH \
--url https://api.gominerva.com/tenant-config/v1/profile-groups/{profileGroupId} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"monitoringFeedFrequencies": {
"Sanctions": "daily",
"PEP": "monthly",
"News": "monthly"
}
}
'{
"message": "Profile Group Retrieved Successfully",
"result": {
"profileGroup": {
"id": "665f0d4c2d2f7c2b2f2f2f31",
"tenantId": "tenant_123",
"workspaceId": "workspace_live",
"key": "high-risk",
"name": "High Risk",
"priority": 100,
"archived": false,
"_v": 1,
"created": "2026-05-30T14:20:00Z",
"updatedAt": "2026-05-30T14:25:00Z",
"description": "Enhanced diligence customers requiring the most frequent monitoring.",
"archivedAt": null,
"monitoringFeedFrequencies": {
"Sanctions": "daily",
"PEP": "monthly",
"News": "monthly"
}
}
}
}Update Profile Group
Update profile group labels, priority, archived status, or monitoring frequency overrides. The profile group key cannot be supplied or changed through the public API.
curl --request PATCH \
--url https://api.gominerva.com/tenant-config/v1/profile-groups/{profileGroupId} \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"monitoringFeedFrequencies": {
"Sanctions": "daily",
"PEP": "monthly",
"News": "monthly"
}
}
'{
"message": "Profile Group Retrieved Successfully",
"result": {
"profileGroup": {
"id": "665f0d4c2d2f7c2b2f2f2f31",
"tenantId": "tenant_123",
"workspaceId": "workspace_live",
"key": "high-risk",
"name": "High Risk",
"priority": 100,
"archived": false,
"_v": 1,
"created": "2026-05-30T14:20:00Z",
"updatedAt": "2026-05-30T14:25:00Z",
"description": "Enhanced diligence customers requiring the most frequent monitoring.",
"archivedAt": null,
"monitoringFeedFrequencies": {
"Sanctions": "daily",
"PEP": "monthly",
"News": "monthly"
}
}
}
}Authorizations
The Minerva API key used for this integration. Manage API keys in the Minerva dashboard under Administration > Developers.
Path Parameters
The Minerva-generated profile group ID.
Body
Profile group update request
Customer-facing profile group label.
"High Risk"
Optional description of the population this group represents. Send an empty string to clear it.
"Enhanced diligence customers requiring the most frequent monitoring."
Non-negative priority used to resolve profiles assigned to multiple groups. Active groups in the same workspace must use unique priorities.
x >= 0100
Set to true to archive the group, or false to restore it.
false
Optional monitoring cadence overrides for profiles assigned to this group. Omitted feed keys inherit the workspace-level cadence.
Show child attributes
Show child attributes
{
"Sanctions": "daily",
"PEP": "monthly",
"News": "monthly"
}