SMS
MMS 이미지 조회
업로드된 MMS 이미지의 URL을 조회합니다. 발급된 이미지 ID를 통해 이미지에 접근할 수 있는 URL을 제공합니다.
get/v2/messages/sms/image/url
Query parameters
expireInnumber
이미지 URL의 만료 시간을 초 단위로 설정합니다. 기본값은 60초입니다.
imageId3string
세 번째 이미지의 ID입니다.
imageId2string
두 번째 이미지의 ID입니다.
imageId1string required
첫 번째 이미지의 ID입니다.
Response
MMS 이미지 URL 조회가 성공적으로 완료되었습니다. 요청한 이미지들의 접근 URL이 반환됩니다.
Example response
{
"code": 200,
"message": "성공",
"data": {
"images": [
{
"imageId1": "IMG019048efaefa7d888ae9801406be243a",
"url": "https://cdn.example.com/images/IMG019048efaefa7d888ae9801406be243a.jpg"
}
]
}
}