Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The async ProcessFiling method can be used to process an XBRL file (ZIP) to the XBRL Portal. An MD5 hash will be calculated on the XBRL files, and duplicates will be rejected. If the XBRL file can't be mapped to an entity or reporting requirement, or if an unexpected error appeared, the XBRL file will be stored in the rejected filings. 

Parameters

ParameterRequiredTypeDescription
zippedXbrlFileYesbase64 byte streamThe ZIP file containing one XBRL file with filename extension .xbrl, or an SEC Filing including the taxonomy extension files.
settings.CommentNostringA comment to the filing, will be displayed in the Filing Details.
settings.SenderIdYesstringThe XBRL context identifier used to map the XBRL file to an Entity.
settings FileNameYesstringThe original filename of the ZIP file.
settings UserIdNostring
settings.AdditionalSeetingsNoDictionary<string,string>An additional dictionary to pass configuration settings without changing the WSDL, see table below.
settings.ValidationOnlyYesbooleanIf true, the XBRL file will be validated, but no further processing will be performed.


Additional Settings KeyTypeDescription
XbrlFileNamestringThe original XBRL file name., that will be used in the filing and for Filing Rule validation.
isSecFilingbooleanHas to be true if an SEC filing ZIP will be processed.
DeactivateCustomValidationsbooleanIf true, no Custom Validation will be performed.

Returns

The ProcessFiling Method returns an ProcessingResult, that has the following properties. It is also returned by the GetProcessingResult method documented below.

...

The method returns a processing result for a given processing identified by its GUID. If the processing is still any status other then RanToCompletition (5), it won't return any property other then Status.

Parameters

ParameterRequiredTypeDescription
processingIdYesbase64
byte stream
bytesThe ZIP file containing one XBRL file with filename extension .xbrl, or an SEC Filing including the taxonomy extension files.

Returns

PropertyTypeDescription
ProcessingIdGUIDA unique GUID
identifyng
identifying the processing request.
FilingIdintThe filing ID of a processed XBRL file, if processing was successful.
StatusenumThe status of the actual processing, RanToCompletion (5) means the process finished.
FilingIdintThe filing ID of a processed XBRL file, if processing was successful.
FilingVersionIdintThe filing version ID of a processed XBRL file, if processing was successful.
IsRejectedbooleanTrue if filing is rejected, if processing was successful.
IsServerErrorbooleanTrue if any server error happened during processing.

Md5Hash

stringThe MD5 hash calculated on the XBRL file, if processing was successful.
IsDuplicateFilingbooleanIf true, a duplicate filing is detected and processing was successful.
DuplicateFilingIdintThe ID of the filing detected as a duplicate, if processing was successful.
DuplicateFilingXbrlProcessingIdGUIDThe GUID of the processing that processed the duplicate filing.
ValidationResultsList<string>The XBRL validation results and messages from the XBRL processing.
IsXbrlValidbooleanThe information if the XBRL file is valid (considering warnings as valid).

Method GetXbrlFile

Returns the XBRL file and optional the Excel visualization file of a created or processed filing, based on the ProcessingID or Filing Version ID.

Parameters

ParameterRequiredTypeDescription
xbrlFileProcessingIdNo*GUIDThe GUID returned by the ProcessFiling method.
filingVersionNo*intThe filing version ID returned by the ProcessFiling method.
includeExcelVisualizationNobooleanIf not only the XBRL file should be returned, but also its Excel visualization, it must be set to true.

Returns

PropertyTypeDescription
FilenamestringThe filename of the XBRL ZIP file.
ZippedFilebase64 bytesThe ZIP file containing the XBRL file.
ExcelVisualizationbase64 bytesThe XLSX Excel file.


Method ExcecuteQueriesAndGenerateXbrl

Runs a set of Queries defined in the Data Source Queries and generates the XBRL file accordingly.

Parameters

ParameterRequiredTypeDescription
entityXbrlIdentifierYesstringThe entities context identifier (e.g. LEI).
reportingDueDateYesDateTimeThe reporting date.
taxonomyEntryPointYesstringThe taxonomy entry point that must exist in the Taxonomy Management.
isoCurrencyCodeYesstringThe default monetary currency, e.g. EUR.
keepLastFilingVersionDataYesbooleanIf true, the last filing version will be updated instead of creating a new XBRL file.
queryVariablesYesDictionary<int, Dictionary<string, string>>Two nested dictionaries, having all required query variables per query.

Returns

PropertyTypeDescription
QueryImportProcessingIdGUIDThe ID of the job executing the queries.
XbrlFileProcessingIdGUIDA unique GUID identifying the XBRL processing job after successful query execution.