Return a batch of received messages.

Note: Each execution will only return new messages that have arrived since the last execution. Each batch of messages will be returned only once.

Required Scopes:

  • inbound-message:read

  • sms:inbound-message:read

  • sms:manage.

External Documentation

To learn more, visit the Infobip documentation.

Parameters

ParameterDescription
Application IDApplication ID that the message is linked to. For more details, refer to Infobip’s documentation.
Campaign Reference IDThe ID of a campaign that was sent in the message.
Entity IDEntity ID that the message is linked to. For more details, refer to Infobip’s documentation.
LimitMaximum number of messages to be returned in a response. Valid range in 1 - 1000.Note: you can only access messages from the last 48 hours.

Example Output

{
	"results": [
		{
			"messageId": "817790313235066447",
			"from": "385916242493",
			"to": "385921004026",
			"text": "QUIZ Correct answer is Paris",
			"cleanText": "Correct answer is Paris",
			"keyword": "QUIZ",
			"receivedAt": "2019-11-09T16:00:00.000+0000",
			"smsCount": 1,
			"price": {
				"pricePerMessage": 0,
				"currency": "EUR"
			},
			"callbackData": "callbackData"
		}
	],
	"messageCount": 1,
	"pendingMessageCount": 0
}

Workflow Library Example

Get Inbound Sms Message with Infobip and Send Results Via Email

Preview this Workflow on desktop