Waiting for engine...
Skip to main content

Atom Connector Versions object

The Atom Connector Versions object represents the properties of connectors that are used by a runtime, Runtime cluster, or Runtime cloud .

Structure

<AtomConnectorVersions id="">
<ConnectorVersion version="" name=""/>
.
.
.
<ConnectorVersion version="" name=""/>
</AtomConnectorVersions>

Each pair of name and version fields represents a connector listed on the Atom Connector Versions tab on the Runtime Management page.

FieldTypeDescription
idstringThe ID of the runtime, Runtime cluster, or Runtime cloud.
versionstringThe connector version used by the runtime, Runtime cluster, or Runtime cloud.
namestringThe connector name used by the runtime, Runtime cluster, or Runtime cloud.

Supported operations

GETQUERYCREATEUPDATEEXECUTEDELETE
 SupportedNot supported Not supported  Not supported Not supported Not supported

The ordinary GET operation retrieves the properties of connectors used by the runtime, Runtime cluster, or Runtime cloud with specified ID. The bulk GET operation retrieves the properties of connectors used by the Runtimes, Runtime clusters, or Runtime clouds with specific IDs, to a maximum of 100.

SOAP implementation

Request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:api="http://api.platform.boomi.com/">
<soapenv:Header>
<wsse:Security
xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
<wsse:UsernameToken wsu:Id="UsernameToken" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<wsse:Username>ATOMSPHERE_USER_NAME</wsse:Username>
<wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">ATOMSPHERE_PASSWORD</wsse:Password>
</wsse:UsernameToken>
</wsse:Security>
</soapenv:Header>
<soapenv:Body>
<api:get>
<api:objectType>AtomConnectorVersions</api:objectType>
<api:objectId>3456789a-bcde-f012-3456-789abcdef012</api:objectId>
</api:get>
</soapenv:Body>
</soapenv:Envelope>

Response:

<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<bns:getResponse xmlns:bns="http://api.platform.boomi.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<bns:result xsi:type="bns:AtomConnectorVersions" id="3456789a-bcde-f012-3456-789abcdef012">
<bns:ConnectorVersion version="16.06.2-20160511.102900-1" name="Atom"/>
<bns:ConnectorVersion version="16.06.2-20160510.100150-1" name="{conKeyRefs.AtomSphere_BoomiEnterprisePlatform} API"/>
<bns:ConnectorVersion version="16.06.2-20160509.150052-2" name="{conKeyRefs.AtomSphere_BoomiEnterprisePlatform} Partner API"/>
<bns:ConnectorVersion version="16.06.2-20160512.140052-1" name="Disk"/>
</bns:result>
</bns:getResponse>
</S:Body>
</S:Envelope>
On this Page