Waiting for engine...
Skip to main content

Atom Extensions object (Deprecated)

The Atom Extensions object represents the extension (process override) values for a Runtime.

caution

The Atom Extensions object is a deprecated API and should no longer be used. Boomi recommends that you take advantage of the API functionality provided by the Environment Extensions object instead. For more information about Boomi's API object deprecation status, refer to the API deprecation and versioning policy topic.

GET and QUERY operations return:

  • The full extensions template, excluding data map extensions

  • Any filled values, excluding passwords, which are not stored

Password fields are encrypted client-side as the extension values are persisted, cleared from local storage, and shipped (encrypted) to the Atom for run time. For an OAuth 2.0 connection, the clientSecret field functions as a password field.

note
  • The Atom Extensions object type is exposed only for accounts in which you do not enable environments. For accounts in which you enable environments, the Environment Extensions object type is exposed instead.
  • Data map extensions for a runtime are represented by the Atom Map Extension object.

Structure

<AtomExtensions id="" extensionGroupId="" atomId="">
<connections> {Optional}
... 0 to n connection elements
<connection name="" id="">
... 0 to n field elements
<field componentOverride="" usesEncryption="" encryptedValueSet="" id=""/>
</connection>
</connections>
<operations> {Optional}
... 0 to n operation elements
<operation name="" id="">
... 0 to n field elements
<field componentOverride="" usesEncryption="" encryptedValueSet="" id="" value=""/>
</operation>
</operations>
<tradingPartners> {Optional}
... 0 to n partnerOverride elements
<tradingPartner name="" id="">
... 0 to n category elements
<category name="" id="">
... 0 to n field elements
<field componentOverride="" usesEncryption="" encryptedValueSet="" id=""/>
</category>
</tradingPartner>
</tradingPartners>
<sharedCommunications> {Optional}
... 0 to n sharedCommunication elements
<sharedCommunication id="" name="" type="">
... 0 to n field elements
<field componentOverride="" usesEncryption="" encryptedValueSet="" value="" id=""/>
</sharedCommunication>
</sharedCommunications>
<crossReferences> {Optional}
... 0 to n crossReference elements
<crossReference overrideValues="" id="">
<CrossReferenceRows>
... 0 to n row elements, each with attributes named for cross-reference table columns
<row/>
</CrossReferenceRows>
</crossReference>
</crossReferences>
<processProperties> {Optional}
... 0 to n ProcessProperty elements, each specifying a component-based process property
<ProcessProperty>
... 0 to n ProcessPropertyValue elements, each specifying a component-based process property value; @encryptedValueSet is not meaningful
<ProcessPropertyValue encryptedValueSet="" value="" key="" label=""/>
</ProcessProperty>
</processProperties>
<properties> {Optional}
... 0 to n property elements, each specifying a dynamic process property
<property name="" value=""/>
</properties>
<PGPCertificates> {Optional}
... 0 to n PGP Certificate elements
<PGPCertificate id=""/>
</PGPCertificates>
</AtomExtensions>
FieldTypeDescription
idstringThe ID of the object. This can be either of the following:
- The value of atomId.
- A conceptual ID synthesized from the Runtime ID (atomId) and the ID of the multi-install integration pack to which the extension values apply (extensionGroupId).
extensionGroupIdstringThe ID of the multi-install integration pack to which the extension values apply, if applicable.
atomIdstringA unique ID assigned by the system to the Runtime.

Supported operations

GETQUERYCREATEUPDATEEXECUTEDELETE
 SupportedSupported Not supported Supported Not supported Not supported 
note
  • The ordinary GET operation retrieves the extension values for the Atom with a specific ID (except for encrypted values). The bulk GET operation retrieves the extension values for the Runtimes with the specific IDs (except for encrypted values), to a maximum of 100.
  • The following fields can be used as QUERY filters for the Atom Extensions object:
FieldAllowed values
atomIdAny string value. This filter is required.
extensionGroupIdAny string value. The intent is that this be the ID of a process in a multi-install integration pack.

Only the EQUALS operator is allowed for the Atom Extensions object filters. It returns one result only.

For general information about the structure of QUERY filters, see the Query filters topic.

  • The UPDATE operation updates the extension values (except for connection setting encrypted values) for the Atom with the specific ID.

You must have the Runtime Management privilege to perform the UPDATE operation. If you have the Runtime Management Read Access privilege, you cannot update Atom extensions.

Here are some examples that show how to work with an encrypted connection password field:

  • To use the encrypted password set on the extension — <bns:field componentOverride="false" usesEncryption="true" encryptedValueSet="true" id="password"/>
  • To use the default password (for example, don’t extend it) — <bns:field componentOverride="false" usesEncryption="true" encryptedValueSet="false" id="password"/>
  • To set the password to new_password and use it — <bns:field componentOverride="false" usesEncryption="true" encryptedValueSet="true" id="password" value="new_password"/>

RESTish implementation

  • GET operation

    Send an HTTP GET to:

    https://api.boomi.com/api/rest/v1/accountId/AtomExtensions/id

    where accountId is the account that you are authenticating with and id is the Runtime ID for the extensions you are attempting to GET.

    XML response:

    <bns:AtomExtensions xmlns:bns="http://api.platform.boomi.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    id="3456789a-bcde-f012-3456-789abcdef012" extensionGroupId="" atomId="3456789a-bcde-f012-3456-789abcdef012">
    <bns:connections>
    <bns:connection name="Local MySql" id="9ba5dfab-8781-4e6a-b908-0c7a7797d17a">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="exhaustedAction"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="driverId"/>
    </bns:connection>
    <bns:connection name="AndLinux - Datadump" id="e3aeadb7-ee49-4596-9e8f-22c04724c88d">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="directory" value="mydirectory"/>
    </bns:connection>
    <bns:connection name="New QuickBooks Connection" id="c9f59f09-e592-4dae-98b9-ddf1e3512f53">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="appName"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="companyFileName"/>
    <bns:field componentOverride="false" usesEncryption="true" encryptedValueSet="false" id="toBeEncrypted"/>
    </bns:connection>
    </bns:connections>
    <bns:operations>
    <bns:operation id="2b9a80d2-103d-4eba-8b61-b7401ab76cf8" name="WebService Operation">
    <bns:field componentOverride="false"
    encryptedValueSet="false" id="ObjectName"
    usesEncryption="false" value="Updated"/>
    </bns:operation>
    </bns:operations>
    <bns:tradingPartners>
    <bns:tradingPartner name="My Company" id="19b261d1-70d3-45a7-bd48-ae7c7df5ea7e">
    <bns:category name="AS2" id="as2">
    <bns:field componentOverride="true" usesEncryption="false" encryptedValueSet="false"
    value="85166fdd-946e-42c7-9264-2b6db77d2d35" id="as2identity-encryptAlias"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    value="" id="as2identity-as2Id"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="as2identity-mdnAlias"/>
    </bns:category>
    <bns:category name="X12 Information" id="x12">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="x12envelope-interchangeid"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="x12envelope-securityinfo"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="x12envelope-version"/>
    </bns:category>
    </bns:tradingPartner>
    </bns:tradingPartners>
    <bns:sharedCommunications>
    <bns:sharedCommunication id="54748ce7-fd92-434c-8db3-2717b44b2692" name="Best Enterprises MyCo" type="http">
    <bns:field id="http-trustedcertalias" encryptedValueSet="false"
    usesEncryption="false" componentOverride="false" value="usercred"/>
    <bns:field id="http-password" encryptedValueSet="false" usesEncryption="false"
    componentOverride="false" value="passwd"/>
    <bns:field id="http-clientId" encryptedValueSet="false" usesEncryption="false"
    componentOverride="false" value="id123"/>
    <bns:field id="http-user" encryptedValueSet="false" usesEncryption="false"
    componentOverride="false" value="admin"/>
    <bns:field id="http-password" encryptedValueSet="false" usesEncryption="true"
    componentOverride="false" value="toBeEncrypted"/>
    </bns:sharedCommunication>
    </bns:sharedCommunications>
    <bns:crossReferences>
    <bns:crossReference name="My Cross Reference" overrideValues="true" id="a6759305-9ed9-47d4-a76f-2ba227454d18">
    <bns:CrossReferenceRows>
    <bns:row ref3="3" ref2="2" ref1="1"/>
    <bns:row ref3="1" ref2="34" ref1="12"/>
    <bns:row ref3="2" ref2="1" ref1="3"/>
    </bns:CrossReferenceRows>
    </bns:crossReference>
    </bns:crossReferences>
    <bns:processProperties>
    <bns:ProcessProperty name="Test Process Property" id="5399215e-3cc8-4006-bfe7-c3ae71df6c26">
    <bns:ProcessPropertyValue encryptedValueSet="false" value="300" key="new-1355426770730"
    label="First"/>
    <bns:ProcessPropertyValue encryptedValueSet="false" value="400" key="new-1355426788553"
    label="Second"/>
    </bns:ProcessProperty>
    </bns:processProperties>
    <bns:properties>
    <bns:property name="reference" value="myreference"/>
    <bns:property name="baseURL" value="myurl"/>
    <bns:property name="datetime" value="20110111"/>
    </bns:properties>
    <bns:PGPCertificates>
    <bns:PGPCertificate id="6a9cb126-57ef-44e1-b30b-7770f4b803b6"/>
    </bns:PGPCertificates>
    </AtomExtensions>

    For a JSON response, send the request with the following HTTP header:

    Accept: application/json

  • QUERY operation

    Send an HTTP POST to:

    https://api.boomi.com/api/rest/v1/accountId/AtomExtensions/query

    where accountId is the ID of the authenticating account for the request.

    The following example query returns extension values for the specified Atom and extensionGroupId (the ID of a process in a multi-install integration pack).

    XML request:

    <QueryConfig xmlns="http://api.platform.boomi.com/">
    <QueryFilter>
    <expression operator="and" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:type="GroupingExpression">
    <nestedExpression operator="EQUALS" property="atomId"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SimpleExpression">
    <argument>3456789a-bcde-f012-3456-789abcdef012</argument>
    </nestedExpression>
    <nestedExpression operator="EQUALS" property="extensionGroupId"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:type="SimpleExpression">
    <argument>2545e8cb-3162-4729-8dff-3a8ccfc48933</argument>
    </nestedExpression>
    </expression>
    </QueryFilter>
    </QueryConfig>

    XML response:

    <bns:QueryResult numberOfResults="1" xmlns:bns="http://api.platform.boomi.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <bns:result xsi:type="bns:AtomExtensions" id="3456789a-bcde-f012-3456-789abcdef012"
    extensionGroupId="2545e8cb-3162-4729-8dff-3a8ccfc48933" atomId="3456789a-bcde-f012-3456-789abcdef012">
    <bns:connections>
    <bns:connection name="Local MySql" id="9ba5dfab-8781-4e6a-b908-0c7a7797d17a">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="exhaustedAction"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="driverId"/>
    </bns:connection>
    <bns:connection name="AndLinux - Datadump" id="e3aeadb7-ee49-4596-9e8f-22c04724c88d">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="directory" value="mydirectory"/>
    </bns:connection>
    <bns:connection name="New QuickBooks Connection" id="c9f59f09-e592-4dae-98b9-ddf1e3512f53">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="appName"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="companyFileName"/>
    <bns:field componentOverride="false" usesEncryption="true" encryptedValueSet="false" id="toBeEncrypted"/>
    </bns:connection>
    </bns:connections>
    <bns:operations>
    <bns:operation id="2b9a80d2-103d-4eba-8b61-b7401ab76cf8" name="WebService Operation">
    <bns:field componentOverride="false"
    encryptedValueSet="false" id="ObjectName"
    usesEncryption="false" value="Updated"/>
    </bns:operation>
    </bns:operations>
    <bns:tradingPartners>
    <bns:tradingPartner name="My Company" id="19b261d1-70d3-45a7-bd48-ae7c7df5ea7e">
    <bns:category name="AS2" id="as2">
    <bns:field componentOverride="true" usesEncryption="false" encryptedValueSet="false"
    value="85166fdd-946e-42c7-9264-2b6db77d2d35" id="as2identity-encryptAlias"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    value="" id="as2identity-as2Id"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="as2identity-mdnAlias"/>
    </bns:category>
    <bns:category name="X12 Information" id="x12">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="x12envelope-interchangeid"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="x12envelope-securityinfo"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="x12envelope-version"/>
    </bns:category>
    </bns:tradingPartner>
    </bns:tradingPartners>
    <bns:sharedCommunications>
    <bns:sharedCommunication id="54748ce7-fd92-434c-8db3-2717b44b2692" name="Best Enterprises MyCo" type="http">
    <bns:field id="http-trustedcertalias" encryptedValueSet="false"
    usesEncryption="false" componentOverride="false" value="usercred"/>
    <bns:field id="http-password" encryptedValueSet="false" usesEncryption="false"
    componentOverride="false" value="passwd"/>
    <bns:field id="http-clientId" encryptedValueSet="false" usesEncryption="false"
    componentOverride="false" value="id123"/>
    <bns:field id="http-user" encryptedValueSet="false" usesEncryption="false"
    componentOverride="false" value="admin"/>
    <bns:field id="http-password" encryptedValueSet="false" usesEncryption="true"
    componentOverride="false" value="toBeEncrypted"/>
    </bns:sharedCommunication>
    </bns:sharedCommunications>
    <bns:crossReferences>
    <bns:crossReference name="My Cross Reference" overrideValues="true" id="a6759305-9ed9-47d4-a76f-2ba227454d18">
    <bns:CrossReferenceRows>
    <bns:row ref3="3" ref2="2" ref1="1"/>
    <bns:row ref3="1" ref2="34" ref1="12"/>
    <bns:row ref3="2" ref2="1" ref1="3"/>
    </bns:CrossReferenceRows>
    </bns:crossReference>
    </bns:crossReferences>
    <bns:processProperties>
    <bns:ProcessProperty name="Test Process Property" id="5399215e-3cc8-4006-bfe7-c3ae71df6c26">
    <bns:ProcessPropertyValue encryptedValueSet="false" value="300" key="new-1355426770730"
    label="First"/>
    <bns:ProcessPropertyValue encryptedValueSet="false" value="400" key="new-1355426788553"
    label="Second"/>
    </bns:ProcessProperty>
    </bns:processProperties>
    <bns:properties>
    <bns:property name="reference" value="myreference"/>
    <bns:property name="baseURL" value="myurl"/>
    <bns:property name="datetime" value="20110111"/>
    </bns:properties>
    <bns:PGPCertificates>
    <bns:PGPCertificate id="6a9cb126-57ef-44e1-b30b-7770f4b803b6"/>
    </bns:PGPCertificates>
    </result>
    </bns:QueryResult>

    For a JSON request, send the request with the following HTTP header:

    Content-Type: application/json

    For a JSON response, send the request with the following HTTP header:

    Accept: application/json

  • UPDATE operation

    Send an HTTP POST to:

    https://api.boomi.com/api/rest/v1/accountId/AtomExtensions/id/update

    where accountId is the ID of the authenticating account for the request and id is the Runtime ID.

    The following example updates the extension value of the dynamic process property named reference, from myreference to myNewreference, for the Atom whose ID is 3456789a-bcde-f012-3456-789abcdef012.

    XML request:

    <bns:AtomExtensions xmlns:bns="http://api.platform.boomi.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    id="3456789a-bcde-f012-3456-789abcdef012" extensionGroupId="2545e8cb-3162-4729-8dff-3a8ccfc48933" atomId="3456789a-bcde-f012-3456-789abcdef012">
    <bns:connections>
    <bns:connection name="Local MySql" id="9ba5dfab-8781-4e6a-b908-0c7a7797d17a">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="exhaustedAction"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="driverId"/>
    </bns:connection>
    <bns:connection name="AndLinux - Datadump" id="e3aeadb7-ee49-4596-9e8f-22c04724c88d">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="directory" value="mydirectory"/>
    </bns:connection>
    <bns:connection name="New QuickBooks Connection" id="c9f59f09-e592-4dae-98b9-ddf1e3512f53">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="appName"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="companyFileName"/>
    <bns:field componentOverride="false" usesEncryption="true" encryptedValueSet="false" id="toBeEncrypted"/>
    </bns:connection>
    </bns:connections>
    <bns:operations>
    <bns:operation id="2b9a80d2-103d-4eba-8b61-b7401ab76cf8" name="WebService Operation">
    <bns:field componentOverride="false"
    encryptedValueSet="false" id="ObjectName"
    usesEncryption="false" value="Updated"/>
    </bns:operation>
    </bns:operations>
    <bns:tradingPartners>
    <bns:tradingPartner name="My Company" id="19b261d1-70d3-45a7-bd48-ae7c7df5ea7e">
    <bns:category name="AS2" id="as2">
    <bns:field componentOverride="true" usesEncryption="false" encryptedValueSet="false"
    value="85166fdd-946e-42c7-9264-2b6db77d2d35" id="as2identity-encryptAlias"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    value="" id="as2identity-as2Id"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="as2identity-mdnAlias"/>
    </bns:category>
    <bns:category name="X12 Information" id="x12">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="x12envelope-interchangeid"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="x12envelope-securityinfo"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="x12envelope-version"/>
    </bns:category>
    </bns:tradingPartner>
    </bns:tradingPartners>
    <bns:sharedCommunications>
    <bns:sharedCommunication id="54748ce7-fd92-434c-8db3-2717b44b2692" name="Best Enterprises MyCo" type="http">
    <bns:field id="http-trustedcertalias" encryptedValueSet="false"
    usesEncryption="false" componentOverride="false" value="usercred"/>
    <bns:field id="http-password" encryptedValueSet="false" usesEncryption="false"
    componentOverride="false" value="passwd"/>
    <bns:field id="http-clientId" encryptedValueSet="false" usesEncryption="false"
    componentOverride="false" value="id123"/>
    <bns:field id="http-user" encryptedValueSet="false" usesEncryption="false"
    componentOverride="false" value="admin"/>
    <bns:field id="http-password" encryptedValueSet="false" usesEncryption="true"
    componentOverride="false" value="toBeEncrypted"/>
    </bns:sharedCommunication>
    </bns:sharedCommunications>
    <bns:crossReferences>
    <bns:crossReference name="My Cross Reference" overrideValues="true" id="a6759305-9ed9-47d4-a76f-2ba227454d18">
    <bns:CrossReferenceRows>
    <bns:row ref3="3" ref2="2" ref1="1"/>
    <bns:row ref3="1" ref2="34" ref1="12"/>
    <bns:row ref3="2" ref2="1" ref1="3"/>
    </bns:CrossReferenceRows>
    </bns:crossReference>
    </bns:crossReferences>
    <bns:processProperties>
    <bns:ProcessProperty name="Test Process Property" id="5399215e-3cc8-4006-bfe7-c3ae71df6c26">
    <bns:ProcessPropertyValue encryptedValueSet="false" value="300" key="new-1355426770730"
    label="First"/>
    <bns:ProcessPropertyValue encryptedValueSet="false" value="400" key="new-1355426788553"
    label="Second"/>
    </bns:ProcessProperty>
    </bns:processProperties>
    <bns:properties>
    <bns:property name="reference" value="myNewreference"/>
    <bns:property name="baseURL" value="myurl"/>
    <bns:property name="datetime" value="20110111"/>
    </bns:properties>
    <bns:PGPCertificates>
    <bns:PGPCertificate id="6a9cb126-57ef-44e1-b30b-7770f4b803b6"/>
    </bns:PGPCertificates>
    </bns:AtomExtensions>

    XML response:

    <bns:AtomExtensions xmlns:bns="http://api.platform.boomi.com/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    id="3456789a-bcde-f012-3456-789abcdef012" extensionGroupId="2545e8cb-3162-4729-8dff-3a8ccfc48933" atomId="3456789a-bcde-f012-3456-789abcdef012">
    <bns:connections>
    <bns:connection name="Local MySql" id="9ba5dfab-8781-4e6a-b908-0c7a7797d17a">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="exhaustedAction"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="driverId"/>
    </bns:connection>
    <bns:connection name="AndLinux - Datadump" id="e3aeadb7-ee49-4596-9e8f-22c04724c88d">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="directory" value="mydirectory"/>
    </bns:connection>
    <bns:connection name="New QuickBooks Connection" id="c9f59f09-e592-4dae-98b9-ddf1e3512f53">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="appName"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false" id="companyFileName"/>
    <bns:field componentOverride="false" usesEncryption="true" encryptedValueSet="false" id="toBeEncrypted"/>
    </bns:connection>
    </bns:connections>
    <bns:operations>
    <bns:operation id="2b9a80d2-103d-4eba-8b61-b7401ab76cf8" name="WebService Operation">
    <bns:field componentOverride="false"
    encryptedValueSet="false" id="ObjectName"
    usesEncryption="false" value="Updated"/>
    </bns:operation>
    </bns:operations>
    <bns:tradingPartners>
    <bns:tradingPartner name="My Company" id="19b261d1-70d3-45a7-bd48-ae7c7df5ea7e">
    <bns:category name="AS2" id="as2">
    <bns:field componentOverride="true" usesEncryption="false" encryptedValueSet="false"
    value="85166fdd-946e-42c7-9264-2b6db77d2d35" id="as2identity-encryptAlias"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    value="" id="as2identity-as2Id"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="as2identity-mdnAlias"/>
    </bns:category>
    <bns:category name="X12 Information" id="x12">
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="x12envelope-interchangeid"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="x12envelope-securityinfo"/>
    <bns:field componentOverride="false" usesEncryption="false" encryptedValueSet="false"
    id="x12envelope-version"/>
    </bns:category>
    </bns:tradingPartner>
    </bns:tradingPartners>
    <bns:sharedCommunications>
    <bns:sharedCommunication id="54748ce7-fd92-434c-8db3-2717b44b2692" name="Best Enterprises MyCo" type="http">
    <bns:field id="http-trustedcertalias" encryptedValueSet="false"
    usesEncryption="false" componentOverride="false" value="usercred"/>
    <bns:field id="http-password" encryptedValueSet="false" usesEncryption="false"
    componentOverride="false" value="passwd"/>
    <bns:field id="http-clientId" encryptedValueSet="false" usesEncryption="false"
    componentOverride="false" value="id123"/>
    <bns:field id="http-user" encryptedValueSet="false" usesEncryption="false"
    componentOverride="false" value="admin"/>
    <bns:field id="http-password" encryptedValueSet="false" usesEncryption="true"
    componentOverride="false" value="toBeEncrypted"/>
    </bns:sharedCommunication>
    </bns:sharedCommunications>
    <bns:crossReferences>
    <bns:crossReference name="My Cross Reference" overrideValues="true" id="a6759305-9ed9-47d4-a76f-2ba227454d18">
    <bns:CrossReferenceRows>
    <bns:row ref3="3" ref2="2" ref1="1"/>
    <bns:row ref3="1" ref2="34" ref1="12"/>
    <bns:row ref3="2" ref2="1" ref1="3"/>
    </bns:CrossReferenceRows>
    </bns:crossReference>
    </bns:crossReferences>
    <bns:processProperties>
    <bns:ProcessProperty name="Test Process Property" id="5399215e-3cc8-4006-bfe7-c3ae71df6c26">
    <bns:ProcessPropertyValue encryptedValueSet="false" value="300" key="new-1355426770730"
    label="First"/>
    <bns:ProcessPropertyValue encryptedValueSet="false" value="400" key="new-1355426788553"
    label="Second"/>
    </bns:ProcessProperty>
    </bns:processProperties>
    <bns:properties>
    <bns:property name="reference" value="myNewreference"/>
    <bns:property name="baseURL" value="myurl"/>
    <bns:property name="datetime" value="20110111"/>
    </bns:properties>
    <bns:PGPCertificates>
    <bns:PGPCertificate id="6a9cb126-57ef-44e1-b30b-7770f4b803b6"/>
    </bns:PGPCertificates>
    </bns:AtomExtensions>

    For a JSON request, send the request with the following HTTP header:

    Content-Type: application/json

    For a JSON response, send the request with the following HTTP header:

    Accept: application/json

On this Page