All URIs are relative to https://backend.id4i.de
| Method | HTTP request | Description |
|---|---|---|
| ResolveImageUsingGET | GET /api/v1/public/image/{imageID} | Resolve image |
byte[] ResolveImageUsingGET (string imageID)
Resolve image
using System;
using System.Diagnostics;
using BlueRain.ID4i.Api;
using BlueRain.ID4i.Client;
using BlueRain.ID4i.Model;
namespace Example
{
public class ResolveImageUsingGETExample
{
public void main()
{
// Configure API key authorization: Authorization
Configuration.Default.AddApiKey("Authorization", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.AddApiKeyPrefix("Authorization", "Bearer");
var apiInstance = new ImagesApi();
var imageID = imageID_example; // string | The id of the image to be resolved.
try
{
// Resolve image
byte[] result = apiInstance.ResolveImageUsingGET(imageID);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling ImagesApi.ResolveImageUsingGET: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| imageID | string | The id of the image to be resolved. |
byte[]
- Content-Type: application/xml, application/json
- Accept: application/xml, application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]