> ## 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.

# POST /folders

> 프로필 내에 새 폴더를 생성합니다.

## 엔드포인트

```
POST /v1/profiles/{profileId}/folders
```

## 요청

```bash theme={null}
curl -X POST "http://client-omni-api.argosidentity.com/v1/profiles/{profileId}/folders" \
  -H "x-api-key: your-api-key-here" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "보조 서류"
  }'
```

### 요청 본문

<ResponseField name="name" type="string" required>
  폴더 표시 이름
</ResponseField>

## 응답

```json theme={null}
{
  "success": true,
  "data": {
    "id": "fld_xyz789",
    "name": "보조 서류",
    "profileId": "prf_abc123def456",
    "isDefault": false,
    "createdAt": "2026-03-15T10:30:00Z"
  }
}
```

<Note>
  각 프로필은 **기본** 폴더로 시작합니다. 추가 폴더를 생성하여 다양한 문서 유형을 정리할 수 있습니다 (예: "신분증 서류", "재무 기록").
</Note>
