Download Bundle Artifact

Topics:

Use the following API call to extract different types of artifacts for a deployed bundle.

It could be XSD, documentation, examples, bundle itself.

GET: /api/v1/deploy/bundle/artifact

Topics:

Example:

GET https://localhost:9500/api/v1/deploy/bundle/artifact

  • {filename} – Artifact name.
  • {artifact} – Requested artifact type from the list: documentation, xsd, example, ids, bundle

--request --

https://localhost:9500/api/v1/deploy/bundle/artifact?filename=SourceCodeStandard.xml&artifact=example

--response--

<?xml version="1.0" encoding="UTF-8"?>
<OmniInterface>
  <SourceCodeStandard version="3.0.0">
  <BaseCode sourceName="test_system"  codeSet="BaseCodes">base_code</
BaseCode>
  <StandardCode sourceName="test_system" 
codeSet="StandardCodes">standard_code</StandardCode>
  <Description>description</Description>
  <SourceStatusCode sourceName="test_system" 
codeSet="SourceStatusCodes">source_status_code</SourceStatusCode>
  <SourceCreatedDate format="yyyy-MM-dd">2017-10-18</SourceCreatedDate>
  <SourceCreatedBy>source_created_by</SourceCreatedBy>
  <SourceModifiedDate format="yyyy-MM-dd">2017-10-1</SourceModifiedDate>
  <SourceModifiedBy>source_modified_by</SourceModifiedBy>
 </SourceCodeStandard>
</OmniInterface>