Skip to main content
POST
/
profile-groups
Create Profile Group
curl --request POST \
  --url https://api.gominerva.com/tenant-config/v1/profile-groups \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "name": "High Risk",
  "description": "Enhanced diligence customers requiring the most frequent monitoring.",
  "priority": 100,
  "monitoringFeedFrequencies": {
    "Sanctions": "deltas",
    "PEP": "weekly",
    "News": "weekly"
  }
}
'
{
  "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"
      }
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.gominerva.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

x-api-key
string
header
required

The Minerva API key used for this integration. Manage API keys in the Minerva dashboard under Administration > Developers.

Body

application/json

Profile group creation request

name
string
required

Customer-facing profile group label.

Example:

"High Risk"

priority
integer
required

Non-negative priority used to resolve profiles assigned to multiple groups. Active groups in the same workspace must use unique priorities.

Required range: x >= 0
Example:

100

description
string

Optional description of the population this group represents.

Example:

"Enhanced diligence customers requiring the most frequent monitoring."

monitoringFeedFrequencies
object

Optional monitoring cadence overrides for profiles assigned to this group. Omitted feed keys inherit the workspace-level cadence.

Example:
{
  "Sanctions": "daily",
  "PEP": "monthly",
  "News": "monthly"
}

Response

201 - application/json

Profile group created successfully

message
string
Example:

"Profile Group Retrieved Successfully"

result
object