Skip to content

Latest commit

 

History

History
44 lines (26 loc) · 1.22 KB

File metadata and controls

44 lines (26 loc) · 1.22 KB

Apiendpoints

Overview

Available Operations

  • list - Get all Api endpoints for a particular apiID.

list

Get all Api endpoints for a particular apiID.

Example Usage

require 'speakeasy_client_sdk_ruby'


s = ::OpenApiSDK::SpeakeasyClientSDK.new
s.config_security(
  ::OpenApiSDK::Shared::Security.new(
    api_key: "<YOUR_API_KEY_HERE>",
  )
)

    
res = s.apiendpoints.list(api_id="<id>")

if ! res.api_endpoints.nil?
  # handle response
end

Parameters

Parameter Type Required Description
api_id ::String ✔️ The ID of the Api to retrieve ApiEndpoints for.

Response

T.nilable(::OpenApiSDK::Operations::GetAllApiEndpointsResponse)