Get Integration Pack metadata for a Space
This query gets all the integration pack metadata for a given space and takes SpaceArtifactListingSearchInput object as input.
Input syntax
query GetSpaceArtifactListings($input: SpaceArtifactListingSearchInput!) {
spaceArtifactListings(input: $input) {
numberOfResults
currentPageSize
spaceArtifactsData {
id
spaceArtifact {
spaceArtifactType
spaceArtifactId
__typename
}
modifiedByUserId
lastModifiedDate
submissionStatus {
__typename
... on ArtifactSubmissionStatus {
spaceArtifactStatus
__typename
}
}
spaceArtifactListingMetaData {
catalogArtifactMetaData
__typename
}
}
__typename
}
}
| Field | Type | Description | Required/Optional |
|---|---|---|---|
| spaceId | ID | The ID of the space, the artifact belongs to. | Required |
| spaceArtifactListingType | SpaceArtifactListingTypeEnum | If this optional field contains the value "INTEGRATION_PACK", it indicates that the listing is for the Integration Pack Listing Service; if the field is undefined, it defaults to a Submissions user. | Optional |
Return syntax
{
"data": {
"spaceArtifactListings": {
"numberOfResults": "integer",
"currentPageSize": "integer",
"spaceArtifactsData": [
{
"id": "string",
"spaceArtifact": {
"spaceArtifactType": "string",
"spaceArtifactId": "string",
"__typename": "string"
},
"modifiedByUserId": "string",
"lastModifiedDate": "string",
"submissionStatus": {
"__typename": "string",
"spaceArtifactStatus": "string"
},
"spaceArtifactListingMetaData": {
"catalogArtifactMetaData": "string",
"__typename": "string"
}
}
],
"__typename": "string"
}
}
}
Implementation
To get the integration pack metadata for a given Space, send a query to platform.boomi.com/graphql with the following headers:
| Key | Value |
|---|---|
| Authorization | Bearer <Token\> |
| Accept | application/json |
JSON request
Sample query that takes the Space Id and space artifact listing type as the input to retrieve the integration pack metadata related to that Space Id.
{
"input": {
"spaceId": "936c2acc-3b00-453d-98cf-7a53e",
"spaceArtifactListingType":
"INTEGRATION_PACK"
}
}
JSON response
{
"data": {
"spaceArtifactListings": {
"numberOfResults": 2,
"currentPageSize": 2,
"spaceArtifactsData": [
{
"id": "08bb7377-e435-414d-a1ca-f34ffd32d801",
"spaceArtifact": {
"spaceArtifactType": "INTEGRATION\\_PACK",
"spaceArtifactId": "5963d1cc-5bb5-45ff-a128-afc67d569be6",
"\\_\\_typename": "SpaceArtifact"
},
"modifiedByUserId": "testuser@boomi.com",
"lastModifiedDate": "2025-05-16T07:14:32.183Z",
"submissionStatus": {
"\\_\\_typename": "ArtifactSubmissionStatus",
"spaceArtifactStatus": "DRAFT"
},
"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"
}
},
{
"id": "16fbdb75-b5da-42a7-87d0-f12b3b21f335",
"spaceArtifact": {
"spaceArtifactType": "INTEGRATION\\_PACK",
"spaceArtifactId": "fbba4331-50ab-48b8-9a71-2a458102b336",
"\\_\\_typename": "SpaceArtifact"
},
"modifiedByUserId": "testuser@boomi.com",
"lastModifiedDate": "2025-05-16T07:12:45.711Z",
"submissionStatus": {
"\\_\\_typename": "ArtifactSubmissionStatus",
"spaceArtifactStatus": "DRAFT"
},
"spaceArtifactListingMetaData": {
"catalogArtifactMetaData": "{\\\\\"tileInfo\\\\\":{\\\\\"desc\\\\\":\\\\\"This is multiQBIP description - test\\\\\",\\\\\"name\\\\\":\\\\\"MULTIQBIP\\\\\",\\\\\"type\\\\\":\\\\\"MULTI\\_ATTACH\\\\\"},\\\\\"detailInfo\\\\\":{\\\\\"demoLink\\\\\":\\\\\"\\\\\",\\\\\"keyUseCases\\\\\":\\\\\"\\\\\",\\\\\"supportedApplication\\\\\":\\\\\"\\\\\"},\\\\\"additionalInfo\\\\\":{\\\\\"fieldData\\\\\":\\[\\]}}\",
"\\_\\_typename": "SpaceArtifactListingMetaData"
}
}
],
"\\_\\_typename": "SpaceArtifactListingQueryResponse"
}
}
}