All URIs are relative to https://localhost/api/v1
| Method | HTTP request | Description |
|---|---|---|
| NotificationGet | GET /notification | Get your current notifications. |
List NotificationGet ()
Get your current notifications.
This is an upcoming feature and currently does not return data.
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class NotificationGetExample
{
public void main()
{
// Configure API key authorization: apiKey
Configuration.Default.AddApiKey("api-key", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.AddApiKeyPrefix("api-key", "Bearer");
// Configure API key authorization: apiNonce
Configuration.Default.AddApiKey("api-nonce", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.AddApiKeyPrefix("api-nonce", "Bearer");
// Configure API key authorization: apiSignature
Configuration.Default.AddApiKey("api-signature", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.AddApiKeyPrefix("api-signature", "Bearer");
var apiInstance = new NotificationApi();
try
{
// Get your current notifications.
List<Notification> result = apiInstance.NotificationGet();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling NotificationApi.NotificationGet: " + e.Message );
}
}
}
}This endpoint does not need any parameter.
apiKey, apiNonce, apiSignature
- Content-Type: application/json, application/x-www-form-urlencoded
- Accept: application/json, application/xml, text/xml, application/javascript, text/javascript
[Back to top] [Back to API list] [Back to Model list] [Back to README]