Enables you to handle an intent of which all intent slots have to be filled in order to fulfill the intent request.
If you have an Intent which requires all slots to be filled in order to fulfill the Intent Request.
Use specialized filter Dialog Intent Filter and its additional elements to define the dialog definition for this intent and its slots.
Dialog Intent Filter, in case it is "automatic" you can just place elements to execute and that is it. In case you have the delegation strategy set to manual you will receive intent requests with dialog state which can be: "STARTED", "IN_PROGRESS" or "COMPLETED". In case it is "STARTED" or "IN_PROGRESS" use the Dialog Delegate Element which is able to pre-fill some slots of the intent or just leave it as it is, to delegate the conversation to Alexa Dialog.OK Flow Result Parameters Example
${result.intentName}${result.dialogState}${result.intentConfirmationStatus}${result.slotName.value}${result.slotName.confirmationStatus}For more info please check out the Official Alexa Documentation at Ways to delegate the dialog to Alexa.