Create SMS Campaign (Without SMS Template) API
Use this API to create an SMS campaign without a template.| Method | POST |
|---|---|
| Endpoint | https://{{host}}/agentassist/api/v1/public/{{IID}}/campaign?campaignType=sms |
| Content-Type | application/json |
| Authorization | auth: {{JWT}} See How to generate the JWT Token. |
| API Scope | Campaign Management |
Path Parameters
| Parameter | Description | Type |
|---|---|---|
host | Environment URL, for example, https://platform.kore.ai | string, required |
IId | The Application ID. | string, required |
Query Parameter
| Parameter | Description | Type |
|---|---|---|
campaignType | Type of Campaign. Use "sms" | string, required |
Sample Request
Headers
| Header | Description | Required/Optional |
|---|---|---|
auth | JWT token for authentication. | required |
iid | The Application Id. | required |
accountId | The Account Id. | required |
Body Parameters
| Parameter | Description | Type |
|---|---|---|
name | Name of the SMS campaign. Used for identification and reporting. Max 48 characters. | string, required |
description | Campaign description. Explains the purpose and behavior of the SMS blast. Max 256 characters. | string, required |
contactLists | List of contact list names to target. Each must exist in the system. At least one required. | array[string], required |
campaignType | Type of campaign. Must be either 'voice' or 'sms'. | string, required |
priority | Campaign priority. Higher values indicate higher execution priority. Allowed values: 1, 2, 3, 4, 5. | string, required |
format | Format of the SMS message. 'simple' or 'advanced' means plain text without personalization. | string, required |
message.templateId | Template ID for message content. If empty, no template is used. | string, optional |
message.message | Actual message text sent to contacts. Must comply with telecom rules. | string, required |
dialingStrategy.callerId.phoneNumber | Sender ID or SMS phone number. | string, required |
dialingStrategy.callingHours.frequency | Frequency of calling hours. Allowed values: 'WEEKLY', 'DAILY', 'CUSTOM'. | string, required |
dialingStrategy.callingHours.timezone | Timezone used to enforce messaging hours. | string, required |
dialingStrategy.callingHours.days | Time blocks when messages can be sent. Each object includes: day, start (for example, “9:00 AM”), end (for example, “6:00 PM”). Multiple entries allowed. | array[object], required |
Sample Response
Response Body Parameters
| Parameter | Description | Type |
|---|---|---|
_id | Unique identifier for the campaign. | string |
name | Campaign name. | string |
lname | Lowercase version of campaign name. | string |
description | Campaign description. | string |
status | Current campaign status. For example: Ready. | string |
priority | Campaign priority. For example: 5 | string |
dialingStrategy | Dialing configuration for the campaign. | object |
dialingStrategy.callerId | Caller ID configuration. | object |
dialingStrategy.callerId.phoneNumber | Caller phone number in E.164 format. | string |
dialingStrategy.callingHours | Allowed calling hours. | object |
dialingStrategy.callingHours.frequency | Frequency of calls. Example: WEEKLY. | string |
dialingStrategy.callingHours.timezone | Time zone used for calling hours. | string |
dialingStrategy.callingHours.days | List of daily calling windows. | array |
dialingStrategy.callingHours.days.day | Day of the week (for example, MO, TU). | string |
dialingStrategy.callingHours.days.start | Start time (for example, 9:00 AM). | string |
dialingStrategy.callingHours.days.end | End time (for example, 6:00 PM). | string |
message | Contains the Base64-encoded SMS content. | object |
message.message | Base64-encoded SMS message string. | string |
totalMessagesSent | Count of messages sent. | integer |
direction | Campaign format type. For example: simple. | string |
createdAt | Campaign creation timestamp in ISO format. | string |
updatedAt | Last update timestamp in ISO format. | string |
schedule | Scheduling settings for the campaign. | object |
schedule.isSchedulingEnabled | Indicates if scheduling is enabled for the campaign. | boolean |
contactLists | List of contact list names used in the campaign. | array |
enableMachineDetect | Indicates if machine detection is enabled (not for SMS). | boolean |
data.format | Specifies the message format (for example, simple). | string |