Bizppurio API manual v3.5
  • 비즈뿌리오 API 소개
  • Quick Start
  • API
    • API Rate Limit
    • 인증토큰 발급
    • 메시지 발송
      • SMS
      • LMS
      • MMS
      • 카카오톡 비즈메시지
      • RCS
      • 대체 발송
      • 국제 문자
    • File Upload
    • 발송 결과 전달
      • PUSH 방식
      • POLLING 방식
    • 발송 결과 재 요청
  • Status Code
    • API 상태코드/결과코드
    • SMS
    • LMS/MMS
    • AT/AI/FT
    • RCS
  • 개정 이력
Powered by GitBook
On this page
  • Parameter Description
  • Request
  • Response
  1. API

File Upload

Previous국제 문자Next발송 결과 전달

Last updated 5 months ago

Parameter Description

설명

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

  • 파일키의 유효 시간은 24시간이며, 이후에는 재발급이 필요합니다.

  • 파일은 확장자(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"
}

실패