Boomi Platform API Reference (1.0.0) - IntegrationPack
The Integration Pack object represents an integration pack. You can query the Integration Pack object to determine the integration packs available to a secondary account This object does not return the integration packs created in the primary or publisher account.
Required Privileges
Write access
- N/A
Read access
- API — Use the Boomi Platform API to access account data.
Retrieves an instance of an IntegrationPack object
Retrieves the properties of the integration pack with a specified ID. The ordinary GET operation retrieves the properties of the integration pack with a specified ID. The bulk GET operation retrieves the properties of the integration packs having the specified IDs, to a maximum of 100.
Authorizations:
path Parameters
| id required | string A unique ID assigned by the system to the integration pack. |
Responses
Response Schema:
| Description required | string A description of the integration pack. |
| id | string A unique ID assigned by the system to the integration pack. |
| installationType | string Enum: "SINGLE" "MULTI" The type of integration pack. Possible values: |
| name | string The name of the integration pack. |
Response samples
- 200
- 403
- 410
- 503
{- "@type": "IntegrationPack",
- "Description": "Order Intake Ipack",
- "id": "89abcdef-0123-4567-89ab-cdef01234567",
- "name": "Order Intake",
- "installationType": "SINGLE"
}Retrieves multiple IntegrationPack objects by identifier
To learn more about bulk, refer to the topic Bulk GET operations.
Authorizations:
Request Body schema: optional
Array of objects (BulkId) | |
| type | string Enum: "GET" "DELETE" "UPDATE" "CREATE" |
Responses
Response Schema:
Array of objects | |||||||||||
Array
| |||||||||||
Request samples
- Payload
{- "request": [
- {
- "id": "56789abc-def0-1234-5678-9abcdef01234"
}
], - "type": "GET"
}Response samples
- 200
- 403
- 410
- 503
{- "response": [
- {
- "Result": {
- "Description": "Order Intake Ipack",
- "id": "89abcdef-0123-4567-89ab-cdef01234567",
- "installationType": "SINGLE",
- "name": "Order Intake"
}, - "index": 0,
- "id": "string",
- "statusCode": 0,
- "errorMessage": "string"
}
]
}Queries for an IntegrationPack 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: name, id, installationType
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 (IntegrationPack) |
Request samples
- Payload
{- "QueryFilter": {
- "expression": {
- "argument": [
- "Single"
], - "operator": "EQUALS",
- "property": "installationType"
}
}
}Response samples
- 200
- 403
- 410
- 503
{- "numberOfResults": 2,
- "@type": "QueryResult",
- "result": [
- {
- "@type": "IntegrationPack",
- "Description": "Order Intake Ipack",
- "id": "89abcdef-0123-4567-89ab-cdef01234567",
- "name": "Order Intake",
- "installationType": "SINGLE"
}, - {
- "@type": "IntegrationPack",
- "Description": "Order Processing Ipack",
- "id": "76543210-fedc-ba98-7654-3210fedcba98",
- "name": "Order Processing",
- "installationType": "SINGLE"
}
]
}Retrieves additional results for an IntegrationPack 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 (IntegrationPack) |
Response samples
- 200
- 403
- 410
- 503
{- "numberOfResults": 2,
- "@type": "QueryResult",
- "result": [
- {
- "@type": "IntegrationPack",
- "Description": "Order Intake Ipack",
- "id": "89abcdef-0123-4567-89ab-cdef01234567",
- "name": "Order Intake",
- "installationType": "SINGLE"
}, - {
- "@type": "IntegrationPack",
- "Description": "Order Processing Ipack",
- "id": "76543210-fedc-ba98-7654-3210fedcba98",
- "name": "Order Processing",
- "installationType": "SINGLE"
}
]
}