Send a raw payload to a user

Send a raw payload message to a given user

Raw payloads can be found differently for each separate channel:

One or many raw payloads can be used in the messages array

Recent Requests
Log in to see full request history
TimeStatusUser Agent
Retrieving recent requests…
LoadingLoading…

You can send an image to someone with the following json payload:

{
	"data": {
		"attributes": {
			"messages": [{
				"attachment": {
					"type": "image",
					"payload": {
						"url": "http://placekitten.com/201/202",
						"is_reusable": true
 					}
 				}
			}],
			"recipient": "[email protected]"
		},
		"type": "external-activity"
	}
}

You can send a Typing indicator (this only works for Flip) with the following json payload:

{
		"data": {
			"attributes": {
				"messages": [{
					"attachment": {
						"type": "typing"
					}
				}],
				"recipient": "[email protected]"
			},
			"type": "external-activity"
		}
	}

Body Params
data
object
required
Response

Language
Credentials
OAuth2
LoadingLoading…
Response
Click Try It! to start a request and see the response here! Or choose an example:
application/json