Skip to main content
POST
/
api
/
Messages
/
Sms
Send SMS.
curl --request POST \
  --url https://api.example.com/api/Messages/Sms \
  --header 'Content-Type: application/json' \
  --data '
{
  "templateId": 123,
  "templateAttachmentIds": [
    123
  ],
  "entityTypeId": 123,
  "subject": "<string>",
  "body": "<string>",
  "placementId": 123,
  "changeRequestId": 123,
  "jobId": 123,
  "recipientIds": [
    123
  ],
  "ccRecipients": [
    "<string>"
  ],
  "sourceMessageId": 123,
  "documentLibraryAttachmentIds": [
    123
  ]
}
'

Query Parameters

minutesDelay
integer<int32>
default:0

Body

application/json
templateId
integer<int32>
templateAttachmentIds
integer<int32>[] | null
entityTypeId
integer<int32>
subject
string | null
body
string | null
placementId
integer<int32>
changeRequestId
integer<int32>
jobId
integer<int32>
recipientIds
integer<int32>[] | null
ccRecipients
string[] | null
sourceMessageId
integer<int32>
documentLibraryAttachmentIds
integer<int32>[] | null

Document IDs from document libraries to attach to the email.

Response

200

OK