ari icon indicating copy to clipboard operation
ari copied to clipboard

Golang Asterisk REST Interface (ARI) library

Results 45 ari issues
Sort by recently updated
recently updated
newest added

I discovered this was missing and just submitted a Pull Request that contains code fixing this issue. While fixing this, I also added support for the ProtocolID (protocol_id proto from...

Here is an example of the data Asterisk sends over for the channel data. In the dialplan field, there is an app_name and an app_data field that is not included...

In the listen function, the for loop checks for a ctx closed. If it is, it exits the function. It needs to call the wg.Done. If the Connect function is...

When the connection is first established, there may be calls in the system. For example, there could be calls that were assigned to this stasis application. Someone accidentally unplugs the...

I want to play media to the client from a certain point in time. But I can't play media with offsetms. ` func playLesson(ctx context.Context, h *ari.ChannelHandle, lessonKey string, offsetms...

I want to receive a list of digits from the client, but the Play method returns immediately when the client clicks on the first digit. This is my code: `...

```go newChannelKey := ari.NewKey(ari.ChannelKey, url.QueryEscape(fmt.Sprintf("channel:%s", endpoint+time.Now().String()))) log.Printf("Originate call to %s\n", newChannelKey) channel, err := client.Channel().Originate(newChannelKey, ari.OriginateRequest{ Endpoint: endpoint, Extension: "s", Context: "inbound", Priority: 1, CallerID: endpoint, // Optional: Set CallerID...

If the caller wants to be notified every time the client detects a change in the Connected/Disconnected state for the websocket (from the last known state), it should create a...

I use ari lib to bridge 2 calls instead of Dial verb at extension.conf . unfortunately the ARI not behave like Dial verb interm of sending call provisioning signals like...

This PR implements `GET /recordings/stored/{recordingName}/file` ARI request. - - - This change is [](https://reviewable.io/reviews/CyCoreSystems/ari/184)