...
Define Integration to Burst SMS with the “Send SMS to a number” operation.
On the tenant menu, click on Integration.
Create an Application with the integration type as REST.
Add an instance to the SA Instance environment to send SMS messages.
Configure the ‘Send SMS to a number’ Operation.
Fetch the access token received as a response from the web service and save it in a local attribute Token.
Follow the above steps and create the following integrations:
‘GetContact’ to get the registered mobile number from the user’s Luma profile using Luma API.
Fetch the Count of Matching users from Luma VA and save it in a local attribute Userlistsize.
Add the following Error Handling rules:
If a matching user is found, i.e. Userlistsize is 1, fetch the Mobile number received as a response from the web service and save it in the attribute Phonenumber.
If no matching user or more than one matching user is found, i.e. Userlistsize is 0 or more than 1, set an error message and exit the skill
...