Documentation Index
Fetch the complete documentation index at: https://developers.argosidentity.com/llms.txt
Use this file to discover all available pages before exploring further.
엔드포인트
GET /v1/workflows/{workflowId}
curl -X GET "http://client-omni-api.argosidentity.com/v1/workflows/{workflowId}" \
-H "x-api-key: your-api-key-here"
{
"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"
}
}