본문으로 건너뛰기

이미지 업로드 url 발급

POST 

/image/open/v1/commands/generate-uploading-url

이미지 업로드 url을 발급합니다.

Request

### Content-Type별 요청의 JSON Schema

{
"application/json": {
"schema": {
"type": "object",
"properties": {
"fileName": {
"type": "string",
"description": "병원별로 유니크한 파일 이름 필요"
}
},
"title": "protos.open.GenerateUploadingImageUrl"
}
}
}

Responses

OK

### Status Code별 응답의 JSON Schema

{
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"data": {
"type": "string"
}
},
"title": "protos.open.GenerateUploadingImageUrlResponse"
}
}
}
}
}