Skip to main content
GET
/
sms
/
{sms_id}
SMS 단건 조회
curl --request GET \
  --url https://client-api.tryvox.co/v3/sms/{sms_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "from_number": "<string>",
  "to_number": "<string>",
  "message": "<string>",
  "byte_count": 1,
  "status": "<string>",
  "created_at": 123,
  "title": "<string>",
  "image_urls": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.tryvox.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

조직 API 키를 Authorization: Bearer <token> 형식으로 보냅니다.

Path Parameters

sms_id
string
required

Response

성공 응답

POST /v3/sms 응답 페이로드입니다.

id
string
required

SMS 메시지 식별자입니다.

Pattern: ^[0-9a-f]{12}$
Example:

"a1b2c3d4e5f6"

from_number
string
required

발신 전화번호입니다.

to_number
string
required

수신자 전화번호입니다.

message
string
required

수신자에게 발송된 메시지 본문입니다.

message_type
enum<string>
required

결정된 메시지 타입입니다.

Available options:
sms,
lms,
mms
byte_count
integer
required

메시지 본문의 UTF-8 byte 수입니다.

Required range: x >= 0
Example:

33

status
string
required

발송 파이프라인 상태입니다.

created_at
integer
required

리소스 생성 시각이며, 밀리초 단위 unix timestamp입니다.

title
string | null

메시지 제목이며, 없으면 null입니다.

image_urls
string[] | null

MMS 첨부의 제공자 이미지 URL이며, 텍스트 전용 발송이면 null입니다.