Telnyx Seti Ruby

Access SETI (Space Exploration Telecommunications Infrastructure) APIs. This skill provides Ruby SDK examples.

team-telnyx 57eed07 721 B Updated

File contents

Telnyx Seti - Ruby

Installation

gem install telnyx

Setup

require "telnyx"

client = Telnyx::Client.new(
  api_key: ENV["TELNYX_API_KEY"], # This is the default and can be omitted
)

All examples below assume client is already initialized as shown above.

Retrieve Black Box Test Results

Returns the results of the various black box tests

GET /seti/black_box_test_results

response = client.seti.retrieve_black_box_test_results

puts(response)

team-telnyx/telnyx-toolkit/tree/main/api/ruby/telnyx-seti-ruby commit 57eed07589

Frequently asked questions

npx skillmds@latest add team-telnyx/telnyx-seti-ruby