Receiving messages

To store a custom channel message you need to make a request to the following resource: Custom channel message

Example request

{
	"channel": "my-channel-secret",
	"contact": {
		"name": "John Doe",
		"email": "[email protected]",
		"identifier": "custom-ADJtTlr18TR1"
	},
	"body": {
		"text": "Lorem ipsum dolar samit."
	},
	"attachments": [{
		"url": "https://website.com/example.jpg",
		"name": "example.jpg"
	}]
}

What’s Next