> ## Documentation Index
> Fetch the complete documentation index at: https://docs.blinkops.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Send SMS

Send a message to one or multiple recipients.

**Required Scopes:**

* message:send

* sms:message:send

* sms:manage.

<Note>
  External Documentation

  To learn more, visit the [Infobip documentation](https://www.infobip.com/docs/api/channels/sms/outbound-sms/send-sms-messages-over-query-parameters).
</Note>

## Basic Parameters

<div className="integrations-table">
  | Parameter | Description                                                                                                                                            |
  | --------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ |
  | Bulk ID   | A unique ID when grouping multiple recipients or messages in a single execution.<br /><br />**Note:** The Length of the `Bulk ID` is between 0 to 100. |
  | Flash     | Select to send a flash message.<br /><br />For more information see [Flash SMS](https://www.infobip.com/docs/sms/message-types#flash-sms).             |
  | From      | The sender ID which can be alphanumeric or numeric (e.g., CompanyName).                                                                                |
  | Send At   | Date and time when the message is to be sent. Used for scheduled SMS.<br /><br />**Note:** Must be sooner than 180 days from now.                      |
  | Text      | Content of the message being sent.                                                                                                                     |
  | To        | A single recipient or a comma-separated list of message recipients.                                                                                    |
</div>

## Advanced Parameters

<div className="integrations-table">
  | Parameter                     | Description                                                                                                                                                                                                                                                                      |
  | ----------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
  | Callback Data                 | Additional data that can be used for identifying, managing, or monitoring a message. Data included here will also be automatically included in the message `Delivery Report`. The maximum value is 4000 characters.                                                              |
  | Include SMS Count In Response | The total count of messages sent.<br /><br />Note that some messages may be split if they exceed the character limit. It will be reflected in the SMS count.                                                                                                                     |
  | India DLT Content Template ID | The ID of your registered DLT (Distributed Ledger Technology) content template.                                                                                                                                                                                                  |
  | India DLT Principal Entity ID | Your DLT (Distributed Ledger Technology) entity id.                                                                                                                                                                                                                              |
  | India DLT Telemarketer ID     | Your assigned Telemarketer ID.                                                                                                                                                                                                                                                   |
  | Intermediate Report           | Use a real-time intermediate delivery report that will be sent on your callback server.<br /><br />For more information see [real-time intermediate delivery report](https://www.infobip.com/docs/api/channels/sms/logs-and-status-reports/receive-outbound-sms-message-report). |
  | Language Code                 | Language code for the correct character set.                                                                                                                                                                                                                                     |
  | Notify Call Back              | Select to set notification report details.                                                                                                                                                                                                                                       |
  | Notify Content Type           | Preferred delivery report `Content Type`.                                                                                                                                                                                                                                        |
  | Notify URL                    | The URL on your call back server on to which a delivery report will be sent.                                                                                                                                                                                                     |
  | South Korea Reseller Code     | A 9-digit reseller identification code from the business registration certificate in South Korea. Resellers must provide this when sending.                                                                                                                                      |
  | South Korea Title             | Title of the message for South Korea.                                                                                                                                                                                                                                            |
  | Tracking Type                 | Sets a custom conversion type naming convention(e.g. ONE\_TIME\_PIN, SOCIAL\_INVITES, etc.).                                                                                                                                                                                     |
  | Transliteration               | The transliteration of your sent message from one script to another. Transliteration is used to replace characters which are not recognized as part of your defaulted alphabet.                                                                                                  |
  | Turkey IYS Brand Code         | ID of the company based on a company VAT number.                                                                                                                                                                                                                                 |
  | Turkey IYS Recipient Type     | Type of recipient for Turkey IYS.                                                                                                                                                                                                                                                |
  | Validity Period               | The message validity period in minutes. When the period expires, it will not be allowed for the message to be sent. Valid range is `1` - `2880` minutes (48 hours).                                                                                                              |
</div>

## Example Output

```json theme={"dark"}
{
	"bulkId": "2034072219640523072",
	"messages": [
		{
			"messageId": "2250be2d4219-3af1-78856-aabe-1362af1edfd2",
			"status": {
				"groupId": 1,
				"groupName": "PENDING",
				"id": 26,
				"name": "PENDING_ACCEPTED",
				"description": "Message sent to next instance"
			},
			"destination": "41793026727",
			"details": {
				"messageCount": 1
			}
		}
	]
}
```

## Workflow Library Example

[Send Sms with Infobip and Send Results Via Email](https://library.blinkops.com/workflows/send-sms-with-infobip-and-send-results-via-email)

<div className="iframe-wrapper">
  <div className="iframe-media">
    <img src="https://mintcdn.com/blinkops-2/ojHYuDeYX5FWuN8a/img/Icons/play-box.svg?fit=max&auto=format&n=ojHYuDeYX5FWuN8a&q=85&s=b8af968e71438a9499c3223c9bd29fb2" alt="Workflow Library" width="16" height="16" data-path="img/Icons/play-box.svg" />

    Preview this Workflow on desktop
  </div>

  <iframe className="iframe" src="https://library.blinkops.com/workflows/send-sms-with-infobip-and-send-results-via-email/canvas" />
</div>
