| Name | 설명 | 타입 |
|---|---|---|
| Authorization* | 액세스 토큰 | string |
| 필드 | 설명 | 타입 |
|---|---|---|
| ciList* | 고객 CI 목록 | array |
| issuerCd* | 발행사 코드 | string |
| qualificationInvestLimitAmt* | 자격별 투자 한도 금액 | number |
| 필드 | 설명 | 타입 |
|---|---|---|
| updatedCount* | 업데이트된 건수 | number |
| updatedInvestLimits* | 업데이트된 투자 한도 목록 | array |
| ↳ id* | 투자 한도 ID | number |
| ↳ ci* | 고객 CI | string |
| ↳ totalInvestLimitAmt* | 총 투자 한도 금액 | number |
| ↳ investAmt* | 투자 금액 | number |
| ↳ remainInvestLimitAmt* | 잔여 투자 한도 금액 | number |
| 코드 | 상태 | 메시지 | 설명 |
|---|---|---|---|
| I0010 | 404 | 요청된 CI 중 존재하지 않는 투자한도가 있습니다. | 요청된 CI 중 존재하지 않는 투자한도가 있습니다. CI 목록을 확인해주세요. |
curl --location --request PUT '/main/v1/invest-limits/qualification' \
--header 'Authorization: Bearer access-token' \
--header 'Content-Type: application/json;charset=UTF-8' \
--data '{
"ciList" : [ "CI00000001", "CI00000002", "CI00000003" ],
"issuerCd" : "ISSUER0001",
"qualificationInvestLimitAmt" : 5000000
}'{
"updatedCount" : 3,
"updatedInvestLimits" : [ {
"id" : 1,
"ci" : "CI00000001",
"totalInvestLimitAmt" : 5000000,
"investAmt" : 2000000,
"remainInvestLimitAmt" : 3000000
}, {
"id" : 2,
"ci" : "CI00000002",
"totalInvestLimitAmt" : 5000000,
"investAmt" : 2000000,
"remainInvestLimitAmt" : 3000000
}, {
"id" : 3,
"ci" : "CI00000003",
"totalInvestLimitAmt" : 5000000,
"investAmt" : 2000000,
"remainInvestLimitAmt" : 3000000
} ]
}