I am using ISP (In skill purchase) and after the whole cycle of purchasing Alexa handle the control back to the skill backend.
So I get a
Connections.Response
withpurchaseResult:ACCEPTED
Now I send a Delegate Directive to an Intent to collect a number
return handlerInput.responseBuilder
.addDelegateDirective(myVoiceSelectionIntent) .getResponse();
Now I got the following error:
"error": { "type": "INVALID_RESPONSE",
"message": "The following directives are not supported: DelegateDirective"
What I tried
- I added the same code snipped to an other intent of the skill and I get forwarded to the myVoiceSelectionIntent
- I tried to return speech and prompt as well but same error.
Question
- Is not possible to use intent chaining and send DelegateDirectives from a
Connections.Response
withpurchaseResult:ACCEPTED
? - I could not find anything that it's forbidden in the documentation