All URIs are relative to https://radiomanager.io/api/v2
Method | HTTP request | Description |
---|---|---|
GetStringsByName | GET /strings/{name} | Get Strings (formatted) |
TextString GetStringsByName (string name, bool? fullModel)
Get Strings (formatted)
Get Strings (formatted)
using System;
using System.Diagnostics;
using RadioManager.Api;
using RadioManager.Client;
using RadioManager.Model;
namespace Example
{
public class GetStringsByNameExample
{
public void main()
{
// Configure API key authorization: API Key
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");
var apiInstance = new StringApi();
var name = name_example; // string | Name of Strings **(Required)**
var fullModel = true; // bool? | Full model or content only **(Required)** (default to true)
try
{
// Get Strings (formatted)
TextString result = apiInstance.GetStringsByName(name, fullModel);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling StringApi.GetStringsByName: " + e.Message );
}
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
name | string | Name of Strings (Required) | |
fullModel | bool? | Full model or content only (Required) | [default to true] |
[API Key](../README.md#API Key)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]