Infobip
Infobip is a global communications platform that provide cloud-based messaging and omnichannel communication solutions for businesses.
Categories: communication
Type: infobip/v1
Connections
Version: 1
API Key
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
key | API Key | STRING | true | |
baseUrl | Base URL | STRING | Personalized base URL for API requests. | true |
Actions
Send SMS
Name: sendSMS
Send a new SMS message
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
sender | From | STRING | The sender ID. It can be alphanumeric or numeric (e.g., CompanyName). | true |
to | To | ARRAY Items[STRING] | Message recipient numbers. | true |
text | Text | STRING | Content of the message being sent. | true |
Example JSON Structure
{ "label" : "Send SMS", "name" : "sendSMS", "parameters" : { "sender" : "", "to" : [ "" ], "text" : "" }, "type" : "infobip/v1/sendSMS"}
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
bulkId | STRING | ID assigned to the request if messaging multiple recipients or sending multiple messages via a single API request. |
messages | ARRAY Items[{STRING(messageId), {INTEGER(groupId), STRING(groupName), INTEGER(id), STRING(name), STRING(description), STRING(action)}(status), STRING(destination), {INTEGER(messageCount)}(details)}] | An array of message objects of a single message or multiple messages sent under one bulk ID. |
Output Example
{ "bulkId" : "", "messages" : [ { "messageId" : "", "status" : { "groupId" : 1, "groupName" : "", "id" : 1, "name" : "", "description" : "", "action" : "" }, "destination" : "", "details" : { "messageCount" : 1 } } ]}
Send Whatsapp Text Message
Name: sendWhatsappTextMessage
Send a new SMS message
Properties
Name | Label | Type | Description | Required |
---|---|---|---|---|
from | From | STRING | Registered WhatsApp sender number. Must be in international format and comply with WhatsApp’s requirements. | true |
to | To | STRING | Message recipient number. Must be in international format. | true |
text | Text | STRING | Content of the message being sent. | true |
Example JSON Structure
{ "label" : "Send Whatsapp Text Message", "name" : "sendWhatsappTextMessage", "parameters" : { "from" : "", "to" : "", "text" : "" }, "type" : "infobip/v1/sendWhatsappTextMessage"}
Output
Type: OBJECT
Properties
Name | Type | Description |
---|---|---|
to | STRING | The destination address of the message. |
messageCount | INTEGER | Number of messages required to deliver. |
messageId | STRING | ID of the message sent. |
status | OBJECT Properties{INTEGER(groupId), STRING(groupName), INTEGER(id), STRING(name), STRING(description), STRING(action)} | Status of the message. |
Output Example
{ "to" : "", "messageCount" : 1, "messageId" : "", "status" : { "groupId" : 1, "groupName" : "", "id" : 1, "name" : "", "description" : "", "action" : "" }}