메인 콘텐츠로 건너뛰기

엔드포인트

POST /v1/workflows/{workflowId}/profiles

요청

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"
    }
  }'

요청 본문

name
string
필수
프로필 표시 이름 (최대 255자)
description
string
프로필 설명
metadata
object
선택적 사용자 정의 메타데이터 (키-값 쌍)

응답 (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"
}
각 새 프로필에 기본 폴더가 자동으로 생성됩니다. 이 폴더에 직접 아이템을 업로드하거나 추가 폴더를 생성할 수 있습니다.