*** id: 01cc18ed-7ba5-4e45-ae97-5a1ce445c708 title: PlayAudioAction slug: /go/reference/calling/actions/play-audio description: The Play Audio Action is used to play audio on a call. max-toc-depth: 3 ---------------- [link]: /docs/server-sdk/v2/go/reference/calling/call ## Relay.Calling.PlayAudioAction This object represents an `audio action` that is currently active on a call. ### Properties | Name | Type | Description | | ------ | ---------------------------- | -------------------------------------------- | | `call` | [`Relay.Calling.Call`][link] | This is the call the action is occurring on. | ### Methods #### Stop() Stop the action immediately. **Examples** > Play an audio file and stop it upon condition. ``` playAction, err := resultDial.Call.PlayAudioAsync("https://cdn.signalwire.com/default-music/welcome.mp3") if err != nil { log.Errorf("Error occurred while trying to play audio") } if condition { playAction.Stop() } ```