Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 417 Bytes

USAGE.md

File metadata and controls

18 lines (14 loc) · 417 Bytes
using SpeakeasySDK;
using SpeakeasySDK.Models.Operations;
using System.Collections.Generic;
using SpeakeasySDK.Models.Shared;

var sdk = new SDK(security: new Security() {
    APIKey = "<YOUR_API_KEY_HERE>",
});

GetApisRequest req = new GetApisRequest() {};

var res = await sdk.Apis.GetApisAsync(req);

// handle response