메인 콘텐츠로 건너뛰기

엔드포인트

GET /v1/workflows/{workflowId}

요청

curl -X GET "http://client-omni-api.argosidentity.com/v1/workflows/{workflowId}" \
  -H "x-api-key: your-api-key-here"

응답

id
string
필수
고유 워크플로우 식별자
name
string
필수
워크플로우 이름
policy
string
필수
자연어 정책 텍스트
engines
array
필수
이 워크플로우에 선택된 엔진 목록
outputSchema
object
필수
분석 결과의 구조를 정의하는 JSON 스키마
{
  "success": true,
  "data": {
    "id": "wf_nowap27l46b2",
    "name": "KYB Business Verification",
    "policy": "사업자등록증에서 회사 데이터를 추출하고, AML 감시 목록과 대조하며, 등록 세부 정보를 검증합니다.",
    "engines": [
      { "id": "id_autoparser", "name": "ID AutoParser" },
      { "id": "aml_business", "name": "AML Business" },
      { "id": "text_verifier", "name": "Text Verifier" },
      { "id": "web_search", "name": "Web Search" }
    ],
    "outputSchema": {
      "company": {
        "name": "string",
        "registrationNumber": "string",
        "country": "string"
      },
      "verification": {
        "amlResult": "string",
        "registrationValid": "boolean"
      },
      "decision": {
        "result": "string",
        "verificationStatus": "pending_review | approved | rejected"
      }
    },
    "createdAt": "2026-01-15T09:00:00Z"
  }
}

GET /workflows/:workflowId/summary

필수 워크플로우 메타데이터만 반환하는 경량 버전입니다 — 목록 조회에 최적화되어 있습니다.
curl -X GET "http://client-omni-api.argosidentity.com/v1/workflows/{workflowId}/summary" \
  -H "x-api-key: your-api-key-here"
{
  "success": true,
  "data": {
    "id": "wf_nowap27l46b2",
    "name": "KYB Business Verification",
    "engineCount": 4,
    "profileCount": 128,
    "createdAt": "2026-01-15T09:00:00Z"
  }
}