메인 콘텐츠로 건너뛰기
POST
/
messages
/
text-message
send-text-message
curl --request POST \
  --url https://api.notifly.tech/messages/text-message \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "projectId": "example_project_1234567890abcdef",
  "type": "sms",
  "body": "Message Body",
  "recipientList": [
    {
      "recipientNo": "01012345678"
    }
  ]
}'
{
  "success": true
}
주의 사항
  • API를 이용한 문자 발송은 노티플라이 문자 자체 발송 설정이 되어있을 경우에만 가능합니다.
  • 발신 번호는 자체 발송 설정에 입력된 번호가 사용됩니다.
  • 아직 API를 이용한 발송 결과에 대한 통계는 UI로 제공되지 않습니다. 정보가 필요하실 경우 contact@notifly.tech으로 문의해주세요.

Authorizations

Authorization
string
header
required

POST /authenticate로 발급받은 인증 토큰

Body

application/json
projectId
string
required

노티플라이 설정 페이지에서 확인 가능

type
enum<string>
required

메시지 유형

사용 가능한 옵션:
sms,
lms,
mms
body
string
required

본문 내용

recipientList
object[]
required

수신자 목록 (최대 1,000명)

title
string

본문 제목 (lms, mms에만 사용)

sendNo
string

여러 발신 번호가 등록되어 있을 경우 발송할 번호

Response

성공적인 메시지 발송입니다

success
boolean