function sendFirstQuestion()

in SampleIntegrations/SampleBots/NodeJS/EmployeeSurvey/app.js [262:294]


function sendFirstQuestion(recipientId) {
	var messageData = {
		recipient: {
			id: recipientId
		},
		message: {
			text: "Between 1 and 5, where 5 is 'Very Happy', how happy are you working here?",
			quick_replies: [{
				content_type: 'text',
				title: 'â˜šī¸ 1',
				payload: 'HAPPY:1'
			},{
				content_type: 'text',
				title: '2',
				payload: 'HAPPY:2'
			},{
				content_type: 'text',
				title: '3',
				payload: 'HAPPY:3'
			},{
				content_type: 'text',
				title: '4',
				payload: 'HAPPY:4'
			},{
				content_type: 'text',
				title: '5 😃',
				payload: 'HAPPY:5'
			}]
		}
	};

	callSendAPI(messageData);
}