0.0
The project is in a healthy, maintained state
This rubygem does not have a description or summary.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0.0, < 1.0
>= 1.10, < 3.0
>= 0.0, < 2.0
>= 1.0, < 4.0
>= 1.0, < 3.0
 Project Readme

Vapi Ruby Library

fern shield Gem Version

The Vapi Ruby library provides access to the Vapi API from Ruby.

Documentation

API reference documentation is available here.

Installation

Install the gem and add to the application's Gemfile by executing:

bundle add vapi_server_sdk

If bundler is not being used to manage dependencies, install the gem by executing:

gem install vapi_server_sdk

Usage

require "vapi_server_sdk"

client = Vapi::Client.new(
  token: 'YOUR_TOKEN'
)
result = client.calls.create()

Async Client

The SDK exposes an async client that you can use to make non-blocking requests.

require "vapi_server_sdk"

client = Vapi::AsyncClient.new(
  token: 'YOUR_TOKEN'
)
result = client.calls.create()

Contributing

While we value open-source contributions to this SDK, this library is generated programmatically. Additions made directly to this library would have to be moved over to our generation code, otherwise they would be overwritten upon the next generated release. Feel free to open a PR as a proof of concept, but know that we will not be able to merge it as-is. We suggest opening an issue first to discuss with us!

On the other hand, contributions to the README are always very welcome!