POST/business-support/approval/imported-documents/attachments
이관 문서 추가 시 필요한 첨부 파일을 추가한다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증을 참고한다.
businessSupport.approval
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
| Content-Type | string | application/json required example : application/json |
| Property | Type | Description |
|---|---|---|
| fileName | string | 첨부 파일명 required minLength : 1 maxLength : 200 |
| fileSize | integer | 첨부 파일 크기(단위: 바이트) required minimum : 1 maximum : 2147483648 |
example
1{2 "fileName": "ExampleFile.pdf",3 "fileSize": 102400004}OK
| Property | Type | Description |
|---|---|---|
| fileId | string | 파일 ID required |
| uploadUrl | string | 첨부 파일 업로드 URL required format : uri |
example
1{2 "fileId": "kr1.1000213.1560c57b-97f6-4cdf-b6c6-a92b758a0f83",3 "uploadUrl": "https://apis-storage.worksmobile.com/k1/workplace/kr1/tmp/1560c57b-97f6-4cdf-b6c6-a92b758a0f83"4}