All URIs are relative to https://localhost
Method | HTTP request | Description |
---|---|---|
ApiTagsGet | GET /api/tags | Fetch all existing tags |
ApiTagsIdDelete | DELETE /api/tags/{id} | Delete a tag |
ApiTagsPost | POST /api/tags | Creates a new tag |
List ApiTagsGet (string name)
Fetch all existing tags
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class ApiTagsGetExample
{
public void main()
{
// Configure API key authorization: apiToken
Configuration.Default.ApiKey.Add("X-AUTH-TOKEN", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("X-AUTH-TOKEN", "Bearer");
// Configure API key authorization: apiUser
Configuration.Default.ApiKey.Add("X-AUTH-USER", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("X-AUTH-USER", "Bearer");
var apiInstance = new TagApi();
var name = name_example; // string | Search term to filter tag list (optional)
try
{
// Fetch all existing tags
List<string> result = apiInstance.ApiTagsGet(name);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling TagApi.ApiTagsGet: " + e.Message );
}
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
name | string | Search term to filter tag list | [optional] |
List
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
void ApiTagsIdDelete (int? id)
Delete a tag
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class ApiTagsIdDeleteExample
{
public void main()
{
// Configure API key authorization: apiToken
Configuration.Default.ApiKey.Add("X-AUTH-TOKEN", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("X-AUTH-TOKEN", "Bearer");
// Configure API key authorization: apiUser
Configuration.Default.ApiKey.Add("X-AUTH-USER", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("X-AUTH-USER", "Bearer");
var apiInstance = new TagApi();
var id = 56; // int? | Tag ID to delete
try
{
// Delete a tag
apiInstance.ApiTagsIdDelete(id);
}
catch (Exception e)
{
Debug.Print("Exception when calling TagApi.ApiTagsIdDelete: " + e.Message );
}
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
id | int? | Tag ID to delete |
void (empty response body)
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
TagEntity ApiTagsPost (TagEditForm body)
Creates a new tag
Creates a new tag and returns it afterwards
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class ApiTagsPostExample
{
public void main()
{
// Configure API key authorization: apiToken
Configuration.Default.ApiKey.Add("X-AUTH-TOKEN", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("X-AUTH-TOKEN", "Bearer");
// Configure API key authorization: apiUser
Configuration.Default.ApiKey.Add("X-AUTH-USER", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.ApiKeyPrefix.Add("X-AUTH-USER", "Bearer");
var apiInstance = new TagApi();
var body = new TagEditForm(); // TagEditForm |
try
{
// Creates a new tag
TagEntity result = apiInstance.ApiTagsPost(body);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling TagApi.ApiTagsPost: " + e.Message );
}
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
body | TagEditForm |
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]