GET/business-support/approval/document-forms
결재 서식 목록을 조회한다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증을 참고한다.
businessSupport.approval
businessSupport.approval.read
| Parameter | Type | Description |
|---|---|---|
| count | integer | 조회 개수 default : 100 minimum : 100 maximum : 200 example : 100 format : int32 |
| cursor | string | 커서값 example : JlIBsfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA== |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| documentForms | array (DocumentForm) | |
| responseMetaData | object (responseMetaData) | 페이지 매김 처리를 위한 모델 |
| Property | Type | Description |
|---|---|---|
| categoryId | integer | 카테고리 ID required |
| documentFormId | string | 결재 서식 코드 required |
| documentFormName | string | 결재 서식명 |
| i18nNames | array (i18nName) | 다국어 목록 정보. |
| enabled | boolean | 결재 서식 사용 여부 |
| useFormDesigner | boolean | 회사 생성 서식 여부 |
| Property | Type | Description |
|---|---|---|
| name | string | 다국어 이름 required minLength : 1 maxLength : 100 |
| language | string | 다국어 언어 코드 required Allowed values : ko_KR, en_US, ja_JP, zh_CN, zh_TW |
| Property | Type | Description |
|---|---|---|
| nextCursor | string | 다음 페이지 조회를 위한 커서 |
example
1{2 "documentForms": [3 {4 "categoryId": 10000001,5 "documentFormId": "16d11974-7351-4cc9-9eec-52322ff286ee",6 "documentFormName": "계획서",7 "i18nNames": [8 {9 "name": "계획서",10 "language": "ko_KR"11 }12 ],13 "enabled": true,14 "useFormDesigner": true15 }16 ],17 "responseMetaData": {18 "nextCursor": "JlIBsfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA=="19 }20}