Skip to main content
Feedback

Get details of an Integration Pack

This query gets details of specific integration pack listings and takes spaceId, spaceArtifactListingIds, and spaceArtifactListingType as inputs.

Input syntax

query GetSpaceArtifactListings($spaceId: ID!, $listingIds: [ID!], $spaceArtifactListingType: SpaceArtifactListingTypeEnum) {
spaceArtifactListings(
input: {spaceId: $spaceId, spaceArtifactListingIds: $listingIds, spaceArtifactListingType: $spaceArtifactListingType}
) {
numberOfResults
currentPageSize
spaceArtifactsData {
id
spaceArtifact {
spaceArtifactType
spaceArtifactId
__typename
}
modifiedByUserId
modifiedByAccountId
lastModifiedDate
submissionStatus {
... on ArtifactSubmissionStatus {
spaceArtifactStatus
__typename
}
__typename
}
spaceArtifactListingMetaData {
catalogArtifactMetaData
__typename
}
__typename
}
__typename
}
}


FieldTypeDescriptionRequired/Optional?
spaceIdIDThe ID of the space, the artifact belongs to.Required
listingIds[ID]guids.Required
spaceArtifactListingTypeSpaceArtifactListingTypeThe type of artifact.Optional

Return syntax

{
"data": {
"spaceArtifactListings": {
"numberOfResults": "integer",
"currentPageSize": "integer",
"spaceArtifactsData": [
{
"id": "string",
"spaceArtifact": {
"spaceArtifactType": "string",
"spaceArtifactId": "string",
"__typename": "string"
},
"modifiedByUserId": "string",
"modifiedByAccountId": "string",
"lastModifiedDate": "string",
"submissionStatus": {
"spaceArtifactStatus": "string",
"__typename": "string"
},
"spaceArtifactListingMetaData": {
"catalogArtifactMetaData": "string",
"__typename": "string"
},
"__typename": "string"
}
],
"__typename": "string"
}
}
}

Implementation

To get the details of a given integration pack, send a query to platform.boomi.com/graphql with the following headers:

KeyValue
AuthorizationBearer <Token\>
Acceptapplication/json

JSON request

Sample query that takes the Space Id, space artifact listing id, and space artifact listing type as the inputs to retrieve the integration pack listing details.

{
"spaceId": "936c2acc-3b00-453d-98cf-7a53e",
"spaceArtifactListingType": "INTEGRATION_PACK",
"listingIds": [
"08bb7377-e435-414d-a1ca-f34ffd32d801"
]
}


JSON response

{
"data": {
"spaceArtifactListings": {
"numberOfResults": 1,
"currentPageSize": 1,
"spaceArtifactsData": [
{
"id": "08bb7377-e435-414d-a1ca-f34ffd32d801",
"spaceArtifact": {
"spaceArtifactType": "INTEGRATION_PACK",
"spaceArtifactId": "5963d1cc-5bb5-45ff-a128-afc67d569be6",
"__typename": "SpaceArtifact"
},
"modifiedByUserId": "testuser@boomi.com",
"modifiedByAccountId": "testuser-MDUDOO",
"lastModifiedDate": "2025-05-16T07:14:32.183Z",
"submissionStatus": {
"spaceArtifactStatus": "DRAFT",
"__typename": "ArtifactSubmissionStatus"
},
"spaceArtifactListingMetaData": {
"catalogArtifactMetaData": "{\"tileInfo\":{\"desc\":\"desc\",\"name\":\"Test_15thApr\",\"type\":\"MULTI\"},\"detailInfo\":{\"demoLink\":\"https://google.com\",\"keyUseCases\":\"\",\"supportedApp\":\"ADP, OKTA\"},\"additionalInfo\":{\"fieldData\":[{\"id\":1744186319263,\"value\":\"testuser\",\"fileType\":\"\",\"helpText\":\"please enter your name\",\"fieldName\":\"name\",\"inputType\":\"Text\",\"fileFormat\":[],\"isRequired\":false},{\"id\":1744186319264,\"value\":\"testuser\",\"fileType\":\"\",\"helpText\":\"please enter your name\",\"fieldName\":\"name\",\"inputType\":\"Text\",\"fileFormat\":[],\"isRequired\":false},{\"id\":1744186319265,\"value\":\"testuser\",\"fileType\":\"\",\"helpText\":\"please enter your name\",\"fieldName\":\"name\",\"inputType\":\"Text\",\"fileFormat\":[],\"isRequired\":false}]}}",
"__typename": "SpaceArtifactListingMetaData"
},
"__typename": "SpaceArtifactListing"
}
],
"__typename": "SpaceArtifactListingQueryResponse"
}
}
}

On this Page