File Upload

Parameter Description

설명

  • 파일을 업로드 하여 MMS 전송 시 사용할 파일 키를 발급합니다.

  • 파일은 확장자(jpg/jpeg), 크기(300kbyte 이하) 제한이 있습니다.

  • 요청 시 파일 업로드 수는 1개로 제한합니다.

URL

[POST] api.bizppurio.com/v2/file

Request

Headers

POST /v2/file HTTP/1.1
Content-Type: multipart/form-data; boundary=5d14-GC42dS9N5BXQAKuhpRfd4VDV54RDDsTJO4
Authorization: Bearer + “ “ + {accesstoken}

Body

--5d14-GC42dS9N5BXQAKuhpRfd4VDV54RDDsTJO4
Content-Disposition: form-data; name="account"
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
{비즈뿌리오 계정}
--5d14-GC42dS9N5BXQAKuhpRfd4VDV54RDDsTJO4
Content-Disposition: form-data; name="file"; filename="sample.jpg"
Content-Type: image/jpeg
Content-Transfer-Encoding: binary
<actual file content, not shown here>
--5d14-GC42dS9N5BXQAKuhpRfd4VDV54RDDsTJO4--

Response

Headers

HTTP/1.1 200 OK
Content-type: application/json

Body

성공

{
  "filekey": "0920msg_123912934949595969"
}

실패

Last updated