Skip to main content

Endpoint

POST /v1/workflows/{workflowId}/profiles

Request

curl -X POST "http://client-omni-api.argosidentity.com/v1/workflows/{workflowId}/profiles" \
  -H "x-api-key: your-api-key-here" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Acme Corp - KYB Verification",
    "description": "KYB verification for Acme Corp",
    "metadata": {
      "region": "KR",
      "riskProfile": "standard"
    }
  }'

Request Body

name
string
required
Display name for the profile (max 255 characters)
description
string
Profile description
metadata
object
Optional custom metadata (key-value pairs)

Response (201 Created)

{
  "id": "pf_a1b2c3d4",
  "workflowId": "wf_7a3f9c2e",
  "name": "Acme Corp - KYB Verification",
  "description": "KYB verification for Acme Corp",
  "metadata": {
    "region": "KR",
    "riskProfile": "standard"
  },
  "itemsCount": 0,
  "lastAnalysisAt": null,
  "folders": [
    {
      "id": "fld_default001",
      "name": "default",
      "isDefault": true,
      "itemsCount": 0,
      "createdAt": "2026-03-15T10:00:00Z"
    }
  ],
  "createdAt": "2026-03-15T10:00:00Z",
  "updatedAt": "2026-03-15T10:00:00Z"
}
A default folder is automatically created with each new profile. You can upload items directly to this folder or create additional folders.