본 문서는 과제 테스트를 위해 제작한 wirebarley-test 프로젝트가 제공하는 API 명세서입니다.
새로운 계좌를 개설합니다.
/api/v1/accounts/newPOSTapplication/json| Field | Type | Required | Description | Constraints |
|---|---|---|---|---|
customerId |
Long | ✅ | 고객 System ID | 양의 정수 |
bankCode |
String | ✅ | 은행 코드 | 필수 값 |
accountNumber |
String | ✅ | 계좌 번호 | 10~20자리 문자열 |
코드 (code) |
은행명 (description) |
|---|---|
| 039 | 경남은행 |
| 034 | 광주은행 |
| 011 | NH농협은행 |
| 032 | 부산은행 |
| 088 | 신한은행 |
| 003 | IBK기업은행 |
| 004 | KB국민은행 |
Example Request
{
"customerId": 1,
"bankCode": "039",
"accountNumber": "123456789012"
}
200 OK