This project implements access to the Symphony AI Summit API.
See the contribution guide for more information regarding contributing to this project
To use the Symphony AI Summit API nuget package:
1. Open your project in Visual Studio
1. Right-click on the project and click "Manage Nuget packages"
1. Find the package "SymphonyAi.Summit.Api" - install the latest version
using SymphonyAi.Summit.Api;
using System;
using System.Threading.Tasks;
namespace My.Project
{
public static class Program
{
public static async Task Main()
{
using var summitClient = new SummitClient(new SummitClientOptions
{
ApiKey = "0123456789abcdef0123456789abcdef01234567"
});
var incidents = await merakiClient
.Incidents
.GetMyIncidentsAsync(new GetMyIncidentsRequest
{
...
}
)
.ConfigureAwait(false);
}
}
}
The Symphony AI Summit API documentation can be found here:
- [Symphony AI Summit API Documentation v1](https://docs.symphonysummitai.com/display/DS/SummitAI+API+Docs)