Skip to main content
Version: 4.62

playAudio

Plays the audio file specified by the URL.

note

Only file types supported by the operating system can be used.

Field Configurations

KeyTypeDescriptionDefault Value
"params" (required)Objectundefinednull

Parameters

KeyTypeDescriptionDefault Value
"async"BooleanSpecifies whether the action should perform asynchronously.null
"repeat"Boolean,StringSpecifies whether the audio file should be played in a loop.false
"url" (required)StringThe URL to the audio file.null

Inherited

From Base Action

Base Action

Field Configurations

KeyTypeDescriptionDefault Value
"dynamicParams"ObjectDynamic params to retrieve data from a specific context e.g. a userSetting.null
"leadingDelimiter"StringThe leading mustache delimiter to use.null
"params"Object,ArrayObject containing the properties of the action.null
"trailingDelimiter"StringThe trailing mustache delimiter to use.null
"type"StringType name of the action.null

Examples

Example 1: Play an audio file

Show ExampleHide Example

The audio file to be played is specified in the params.

{
"type": "playAudio",
"params": {
"url": "https://media.mobilitysuite.de/D3GztVgEoW7XpZNxYs5SfOkHoibhK2C9/de.mp3"
}
}
The app showing the results of the sample code from Example 1.The app showing the results of the sample code from Example 1.