Boomi Platform API Reference (1.0.0) - IntegrationPackAtomAttachment
The Integration Pack Atom Attachment object enables the attachment or detachment of an integration pack instance to or from a particular Runtime.
CAUTION: The Integration Pack Atom Attachment object is a deprecated API and should no longer be used. Non-environment functionality was removed from the , and all accounts are changed to utilize Environments. Therefore, Boomi recommends that you take advantage of the API functionality provided by the Integration Pack Environment Attachment object instead. For more information about Boomi's API object deprecation status, refer to API deprecation and versioning policy.
Required Privileges
Read and Write access
- API — Use the Boomi Platform API to access account data.
- DEPLOY — Deploy processes and other packaged components to environments.
Creates an IntegrationPackAtomAttachment object
Attaches an integration pack instance having the specified ID to the Runtime having the specified ID.
Authorizations:
Request Body schema: optional
| atomId | string A unique ID assigned by the system to the Runtime. |
| id | string The object’s conceptual ID, which is synthesized from the Runtime and integration pack instance IDs. |
| integrationPackInstanceId | string A unique ID assigned by the system to the integration pack instance. |
Responses
Response Schema:
| atomId | string A unique ID assigned by the system to the Runtime. |
| id | string The object’s conceptual ID, which is synthesized from the Runtime and integration pack instance IDs. |
| integrationPackInstanceId | string A unique ID assigned by the system to the integration pack instance. |
Request samples
- Payload
{- "integrationPackInstanceId": "76543210FEDCBA9876543210FEDCBA98",
- "atomId": "3456789a-bcde-f012-3456-789abcdef012"
}Response samples
- 200
- 403
- 410
- 503
{- "@type": "IntegrationPackAtomAttachment",
- "integrationPackInstanceId": "76543210FEDCBA9876543210FEDCBA98",
- "atomId": "3456789a-bcde-f012-3456-789abcdef012",
- "id": "Ab0Cd1Ef1Gh3Ij4Kl5Mn6Op7Qr8St9Uv0Wx9Yz8Zy7Xw6Vu5Ts4Rq3Po2Nm1Lk0Ji1Hg"
}Queries for an IntegrationPackAtomAttachment object(s)
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.
Authorizations:
Request Body schema: optional
Possible properties include: atomId, integrationPackInstanceId
required | object | ||||||||||
| |||||||||||
Responses
Response Schema:
| numberOfResults | integer <int32> |
| queryToken | string By default, the queryToken parameter is not available in the query response. It appears only when the query response contains more than 100 results. The maximum number of results returned per query is 100. To retrieve the next set of results, use the queryToken in the queryMore request. |
Array of objects (IntegrationPackAtomAttachment) |
Request samples
- Payload
{- "QueryFilter": {
- "expression": {
- "argument": [
- "3456789a-bcde-f012-3456-789abcdef012"
], - "operator": "EQUALS",
- "property": "atomId"
}
}
}Response samples
- 200
- 403
- 410
- 503
{- "numberOfResults": 2,
- "@type": "QueryResult",
- "result": [
- {
- "@type": "IntegrationPackAtomAttachment",
- "integrationPackInstanceId": "76543210FEDCBA9876543210FEDCBA98",
- "atomId": "3456789a-bcde-f012-3456-789abcdef012",
- "id": "Ab0Cd1Ef1Gh3Ij4Kl5Mn6Op7Qr8St9Uv0Wx9Yz8Zy7Xw6Vu5Ts4Rq3Po2Nm1Lk0Ji1Hg"
}, - {
- "@type": "IntegrationPackAtomAttachment",
- "integrationPackInstanceId": "876543210FEDCBA9876543210FEDCBA9",
- "atomId": "3456789a-bcde-f012-3456-789abcdef012",
- "id": "b0Cd1Ef1Gh3Ij4Kl5Mn6Op7Qr8St9Uv0Wx9Yz8Zy7Xw6Vu5Ts4Rq3Po2Nm1Lk0Ji1HgA"
}
]
}Retrieves additional results for an IntegrationPackAtomAttachment query
To learn about using queryMore, refer to the topic Query paging.
Authorizations:
Request Body schema: text/plainrequired
Responses
Response Schema:
| numberOfResults | integer <int32> |
| queryToken | string By default, the queryToken parameter is not available in the query response. It appears only when the query response contains more than 100 results. The maximum number of results returned per query is 100. To retrieve the next set of results, use the queryToken in the queryMore request. |
Array of objects (IntegrationPackAtomAttachment) |
Response samples
- 200
- 403
- 410
- 503
{- "numberOfResults": 2,
- "@type": "QueryResult",
- "result": [
- {
- "@type": "IntegrationPackAtomAttachment",
- "integrationPackInstanceId": "76543210FEDCBA9876543210FEDCBA98",
- "atomId": "3456789a-bcde-f012-3456-789abcdef012",
- "id": "Ab0Cd1Ef1Gh3Ij4Kl5Mn6Op7Qr8St9Uv0Wx9Yz8Zy7Xw6Vu5Ts4Rq3Po2Nm1Lk0Ji1Hg"
}, - {
- "@type": "IntegrationPackAtomAttachment",
- "integrationPackInstanceId": "876543210FEDCBA9876543210FEDCBA9",
- "atomId": "3456789a-bcde-f012-3456-789abcdef012",
- "id": "b0Cd1Ef1Gh3Ij4Kl5Mn6Op7Qr8St9Uv0Wx9Yz8Zy7Xw6Vu5Ts4Rq3Po2Nm1Lk0Ji1HgA"
}
]
}Deletes an IntegrationPackAtomAttachment object
Detaches an integration pack instance from a Runtime, where the attachment is specified by the conceptual Integration Pack Atom Attachment object ID. This ID can be obtained from a QUERY operation.
Authorizations:
path Parameters
| id required | string The object’s conceptual ID, which is synthesized from the Runtime and integration pack instance IDs. |
Responses
Response samples
- 403
- 410
- 503
{- "message": "Access denied due to insufficient permissions."
}