Waiting for engine...
Skip to main content

Account Cloud Attachment Summary object

The AccountCloudAttachmentSummary object lets cloud owners retrieve a list of cloud attachments for their runtime clouds. This includes attachments from the owner’s account as well as from child accounts with which the cloud is shared.

The runtime cloud created by the authenticating account must have Cloud Management privileges to access the summary of cloud attachments. The following metadata can be retrieved using the AccountCloudAttachmentSummary object:

  • Runtime ID
  • Attachment Instance ID
  • Attachment Account ID
  • Attachment Creation Date
  • Cloud Cluster ID
  • Cloud ID
FieldTypeDescription
runtimeIdstringRead-only. System-generated unique identifier of the cloud attachment
attachmentInstanceIdstringRead-only. Instance ID for the cloud attachment, which is a combination of the attachment's account ID and a system-generated suffix.
attachmentAccountIdstringRead-only. Account ID for the cloud attachment.
attachmentCreationDatestringRead-only. Date the attachment was created on the cloud.
cloudClusterIdstringRead-only. Unique ID of the cloud cluster for the attachment.
cloudIdstringRead-only. Unique ID of the logical runtime cloud for the attachment.

Supported operations

GETQUERYCREATEUPDATEEXECUTEDELETE
SupportedSupportedNot SupportedNot SupportedNot SupportedNot Supported

Using the GET operation

Send an HTTP GET to https://api.boomi.com/api/rest/v1/{accountId}/AccountCloudAttachmentSummary/{runtimeId}

where {accountId} is the ID of the authenticating account for the request and {runtimeId} is the ID of the cloud attachment.

Using the QUERY operation

Retrieves cloud attachments across all runtime clouds that were created by the authenticating account. Without applying query filters, the query returns all non-deleted cloud attachments across all cloud clusters.

It is recommended to filter the results using query filters such as by Cloud ID, by account, or by creation date. For general information about the structure of QUERY filters, their sample payloads, and how to handle the paged results, refer to Query filters and Query paging.

The following table shows the supported operators by each field.

Query Filter FieldEQUALS, NOT_EQUALS, IS_NULL, IS_NOT_NULLLESS_THAN(_OR_EQUAL), GREATER_THAN(_OR_EQUAL), BETWEEN
runtimeIdYesNo
attachmentInstanceIdYesNo
attachmentAccountIdYesNo
attachmentCreationDateYesYes
cloudClusterIdYesNo
cloudIdYesNo

SOAP implementation

 <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:api="http://api.platform.boomi.com/">
<soapenv:Body>
<api:get>
<api:objectType>AccountCloudAttachmentSummary</api:objectType>
<api:objectId>0134a8f1-594a-479c-b535-fd8154942952</api:objectId>
</api:get>
</soapenv:Body>
</soapenv:Envelope>

Response:

<?xml version='1.0' encoding='UTF-8'?>
<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/">
<S:Body>
<bns:getResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:bns="http://api.platform.boomi.com/">
<bns:result xsi:type="bns:AccountCloudAttachmentSummary" runtimeId="0134a8f1-594a-479c-b535-fd8154942952" attachmentInstanceId="myaccount-A1B2C3.BJRJC2" attachmentAccountId="myaccount-A1B2C3" cloudClusterId="9cfec83c-cc54-4a36-bdac-b233e92ba7c5" cloudId="abf5efbc-8829-4deb-8e1c-f2d2a4885b15" attachmentCreationDate="2025-06-11T07:06:04Z"/>
</bns:getResponse>
</S:Body>
</S:Envelope>
On this Page