curl -X GET "https://localhost:8088/raportado-services/esma-esef/reports/{id}/validation-results-excel?excludedAssertions=&excludedFilingRules=&validateDimensions=&validateFilingRules=&validateFormulas=&validateInlineXBRL=&validateTaxonomy=&validateXBRL="
import io.swagger.client.*;
import io.swagger.client.auth.*;
import io.swagger.client.model.*;
import io.swagger.client.api.EsmaesefRestControllerApi;
import java.io.File;
import java.util.*;
public class EsmaesefRestControllerApiExample {
public static void main(String[] args) {
EsmaesefRestControllerApi apiInstance = new EsmaesefRestControllerApi();
Long id = 789; // Long | Report ID
String excludedAssertions = excludedAssertions_example; // String | List of Formula assertion IDs to be excluded
String excludedFilingRules = excludedFilingRules_example; // String | List of filing rules IDs to be excluded
Boolean validateDimensions = true; // Boolean | Switch ON/OFF dimensions validation
Boolean validateFilingRules = true; // Boolean | Switch ON/OFF filing rules validation
Boolean validateFormulas = true; // Boolean | Switch ON/OFF formula validation
Boolean validateInlineXBRL = true; // Boolean | Switch ON/OFF Inline XBRL validation
Boolean validateTaxonomy = true; // Boolean | Switch ON/OFF taxonomy validation
Boolean validateXBRL = true; // Boolean | Switch ON/OFF XBRL 2.1 validation
try {
Resource result = apiInstance.exportValidationResultsToExcelUsingGET(id, excludedAssertions, excludedFilingRules, validateDimensions, validateFilingRules, validateFormulas, validateInlineXBRL, validateTaxonomy, validateXBRL);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling EsmaesefRestControllerApi#exportValidationResultsToExcelUsingGET");
e.printStackTrace();
}
}
}
import io.swagger.client.api.EsmaesefRestControllerApi;
public class EsmaesefRestControllerApiExample {
public static void main(String[] args) {
EsmaesefRestControllerApi apiInstance = new EsmaesefRestControllerApi();
Long id = 789; // Long | Report ID
String excludedAssertions = excludedAssertions_example; // String | List of Formula assertion IDs to be excluded
String excludedFilingRules = excludedFilingRules_example; // String | List of filing rules IDs to be excluded
Boolean validateDimensions = true; // Boolean | Switch ON/OFF dimensions validation
Boolean validateFilingRules = true; // Boolean | Switch ON/OFF filing rules validation
Boolean validateFormulas = true; // Boolean | Switch ON/OFF formula validation
Boolean validateInlineXBRL = true; // Boolean | Switch ON/OFF Inline XBRL validation
Boolean validateTaxonomy = true; // Boolean | Switch ON/OFF taxonomy validation
Boolean validateXBRL = true; // Boolean | Switch ON/OFF XBRL 2.1 validation
try {
Resource result = apiInstance.exportValidationResultsToExcelUsingGET(id, excludedAssertions, excludedFilingRules, validateDimensions, validateFilingRules, validateFormulas, validateInlineXBRL, validateTaxonomy, validateXBRL);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling EsmaesefRestControllerApi#exportValidationResultsToExcelUsingGET");
e.printStackTrace();
}
}
}
Long *id = 789; // Report ID
String *excludedAssertions = excludedAssertions_example; // List of Formula assertion IDs to be excluded (optional)
String *excludedFilingRules = excludedFilingRules_example; // List of filing rules IDs to be excluded (optional)
Boolean *validateDimensions = true; // Switch ON/OFF dimensions validation (optional)
Boolean *validateFilingRules = true; // Switch ON/OFF filing rules validation (optional)
Boolean *validateFormulas = true; // Switch ON/OFF formula validation (optional)
Boolean *validateInlineXBRL = true; // Switch ON/OFF Inline XBRL validation (optional)
Boolean *validateTaxonomy = true; // Switch ON/OFF taxonomy validation (optional)
Boolean *validateXBRL = true; // Switch ON/OFF XBRL 2.1 validation (optional)
EsmaesefRestControllerApi *apiInstance = [[EsmaesefRestControllerApi alloc] init];
// Export ESEF report validation results to Excel document
[apiInstance exportValidationResultsToExcelUsingGETWith:id
excludedAssertions:excludedAssertions
excludedFilingRules:excludedFilingRules
validateDimensions:validateDimensions
validateFilingRules:validateFilingRules
validateFormulas:validateFormulas
validateInlineXBRL:validateInlineXBRL
validateTaxonomy:validateTaxonomy
validateXBRL:validateXBRL
completionHandler: ^(Resource output, NSError* error) {
if (output) {
NSLog(@"%@", output);
}
if (error) {
NSLog(@"Error: %@", error);
}
}];
var RestApiForRaportadoServices = require('rest_api_for_raportado_services');
var api = new RestApiForRaportadoServices.EsmaesefRestControllerApi()
var id = 789; // {Long} Report ID
var opts = {
'excludedAssertions': excludedAssertions_example, // {String} List of Formula assertion IDs to be excluded
'excludedFilingRules': excludedFilingRules_example, // {String} List of filing rules IDs to be excluded
'validateDimensions': true, // {Boolean} Switch ON/OFF dimensions validation
'validateFilingRules': true, // {Boolean} Switch ON/OFF filing rules validation
'validateFormulas': true, // {Boolean} Switch ON/OFF formula validation
'validateInlineXBRL': true, // {Boolean} Switch ON/OFF Inline XBRL validation
'validateTaxonomy': true, // {Boolean} Switch ON/OFF taxonomy validation
'validateXBRL': true // {Boolean} Switch ON/OFF XBRL 2.1 validation
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.exportValidationResultsToExcelUsingGET(id, opts, callback);
using System;
using System.Diagnostics;
using IO.Swagger.Api;
using IO.Swagger.Client;
using IO.Swagger.Model;
namespace Example
{
public class exportValidationResultsToExcelUsingGETExample
{
public void main()
{
var apiInstance = new EsmaesefRestControllerApi();
var id = 789; // Long | Report ID
var excludedAssertions = excludedAssertions_example; // String | List of Formula assertion IDs to be excluded (optional)
var excludedFilingRules = excludedFilingRules_example; // String | List of filing rules IDs to be excluded (optional)
var validateDimensions = true; // Boolean | Switch ON/OFF dimensions validation (optional)
var validateFilingRules = true; // Boolean | Switch ON/OFF filing rules validation (optional)
var validateFormulas = true; // Boolean | Switch ON/OFF formula validation (optional)
var validateInlineXBRL = true; // Boolean | Switch ON/OFF Inline XBRL validation (optional)
var validateTaxonomy = true; // Boolean | Switch ON/OFF taxonomy validation (optional)
var validateXBRL = true; // Boolean | Switch ON/OFF XBRL 2.1 validation (optional)
try
{
// Export ESEF report validation results to Excel document
Resource result = apiInstance.exportValidationResultsToExcelUsingGET(id, excludedAssertions, excludedFilingRules, validateDimensions, validateFilingRules, validateFormulas, validateInlineXBRL, validateTaxonomy, validateXBRL);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling EsmaesefRestControllerApi.exportValidationResultsToExcelUsingGET: " + e.Message );
}
}
}
}
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Swagger\Client\Api\EsmaesefRestControllerApi();
$id = 789; // Long | Report ID
$excludedAssertions = excludedAssertions_example; // String | List of Formula assertion IDs to be excluded
$excludedFilingRules = excludedFilingRules_example; // String | List of filing rules IDs to be excluded
$validateDimensions = true; // Boolean | Switch ON/OFF dimensions validation
$validateFilingRules = true; // Boolean | Switch ON/OFF filing rules validation
$validateFormulas = true; // Boolean | Switch ON/OFF formula validation
$validateInlineXBRL = true; // Boolean | Switch ON/OFF Inline XBRL validation
$validateTaxonomy = true; // Boolean | Switch ON/OFF taxonomy validation
$validateXBRL = true; // Boolean | Switch ON/OFF XBRL 2.1 validation
try {
$result = $api_instance->exportValidationResultsToExcelUsingGET($id, $excludedAssertions, $excludedFilingRules, $validateDimensions, $validateFilingRules, $validateFormulas, $validateInlineXBRL, $validateTaxonomy, $validateXBRL);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling EsmaesefRestControllerApi->exportValidationResultsToExcelUsingGET: ', $e->getMessage(), PHP_EOL;
}
?>
use Data::Dumper;
use WWW::SwaggerClient::Configuration;
use WWW::SwaggerClient::EsmaesefRestControllerApi;
my $api_instance = WWW::SwaggerClient::EsmaesefRestControllerApi->new();
my $id = 789; # Long | Report ID
my $excludedAssertions = excludedAssertions_example; # String | List of Formula assertion IDs to be excluded
my $excludedFilingRules = excludedFilingRules_example; # String | List of filing rules IDs to be excluded
my $validateDimensions = true; # Boolean | Switch ON/OFF dimensions validation
my $validateFilingRules = true; # Boolean | Switch ON/OFF filing rules validation
my $validateFormulas = true; # Boolean | Switch ON/OFF formula validation
my $validateInlineXBRL = true; # Boolean | Switch ON/OFF Inline XBRL validation
my $validateTaxonomy = true; # Boolean | Switch ON/OFF taxonomy validation
my $validateXBRL = true; # Boolean | Switch ON/OFF XBRL 2.1 validation
eval {
my $result = $api_instance->exportValidationResultsToExcelUsingGET(id => $id, excludedAssertions => $excludedAssertions, excludedFilingRules => $excludedFilingRules, validateDimensions => $validateDimensions, validateFilingRules => $validateFilingRules, validateFormulas => $validateFormulas, validateInlineXBRL => $validateInlineXBRL, validateTaxonomy => $validateTaxonomy, validateXBRL => $validateXBRL);
print Dumper($result);
};
if ($@) {
warn "Exception when calling EsmaesefRestControllerApi->exportValidationResultsToExcelUsingGET: $@\n";
}
from __future__ import print_statement
import time
import swagger_client
from swagger_client.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = swagger_client.EsmaesefRestControllerApi()
id = 789 # Long | Report ID
excludedAssertions = excludedAssertions_example # String | List of Formula assertion IDs to be excluded (optional)
excludedFilingRules = excludedFilingRules_example # String | List of filing rules IDs to be excluded (optional)
validateDimensions = true # Boolean | Switch ON/OFF dimensions validation (optional)
validateFilingRules = true # Boolean | Switch ON/OFF filing rules validation (optional)
validateFormulas = true # Boolean | Switch ON/OFF formula validation (optional)
validateInlineXBRL = true # Boolean | Switch ON/OFF Inline XBRL validation (optional)
validateTaxonomy = true # Boolean | Switch ON/OFF taxonomy validation (optional)
validateXBRL = true # Boolean | Switch ON/OFF XBRL 2.1 validation (optional)
try:
# Export ESEF report validation results to Excel document
api_response = api_instance.export_validation_results_to_excel_using_get(id, excludedAssertions=excludedAssertions, excludedFilingRules=excludedFilingRules, validateDimensions=validateDimensions, validateFilingRules=validateFilingRules, validateFormulas=validateFormulas, validateInlineXBRL=validateInlineXBRL, validateTaxonomy=validateTaxonomy, validateXBRL=validateXBRL)
pprint(api_response)
except ApiException as e:
print("Exception when calling EsmaesefRestControllerApi->exportValidationResultsToExcelUsingGET: %s\n" % e)