curl --request GET \
--url https://api.botpress.cloud/v1/admin/hub/integrations/{name}/{version} \
--header 'Authorization: Bearer <token>'{
"integration": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"identifier": {
"fallbackHandlerScript": "<string>",
"extractScript": "<string>"
},
"url": "<string>",
"name": "<string>",
"version": "<string>",
"interfaces": {},
"configuration": {
"identifier": {
"required": true,
"linkTemplateScript": "<string>"
},
"schema": {},
"title": "<string>",
"description": "<string>"
},
"configurations": {},
"channels": {},
"states": {},
"events": {},
"actions": {},
"user": {
"tags": {},
"creation": {
"enabled": true,
"requiredTags": [
"<string>"
]
}
},
"entities": {},
"dev": true,
"title": "<string>",
"description": "<string>",
"iconUrl": "<string>",
"readmeUrl": "<string>",
"public": true,
"visibility": "public",
"verificationStatus": "unapproved",
"secrets": [
"<string>"
],
"ownerWorkspace": {
"id": "<string>",
"handle": "<string>",
"name": "<string>"
},
"meta": {
"installs": 123,
"views": 123
},
"sandbox": {
"identifierExtractScript": "<string>",
"messageExtractScript": "<string>"
},
"maxExecutionTime": 123,
"attributes": {}
}
}Get public integration by name and version
curl --request GET \
--url https://api.botpress.cloud/v1/admin/hub/integrations/{name}/{version} \
--header 'Authorization: Bearer <token>'{
"integration": {
"id": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"identifier": {
"fallbackHandlerScript": "<string>",
"extractScript": "<string>"
},
"url": "<string>",
"name": "<string>",
"version": "<string>",
"interfaces": {},
"configuration": {
"identifier": {
"required": true,
"linkTemplateScript": "<string>"
},
"schema": {},
"title": "<string>",
"description": "<string>"
},
"configurations": {},
"channels": {},
"states": {},
"events": {},
"actions": {},
"user": {
"tags": {},
"creation": {
"enabled": true,
"requiredTags": [
"<string>"
]
}
},
"entities": {},
"dev": true,
"title": "<string>",
"description": "<string>",
"iconUrl": "<string>",
"readmeUrl": "<string>",
"public": true,
"visibility": "public",
"verificationStatus": "unapproved",
"secrets": [
"<string>"
],
"ownerWorkspace": {
"id": "<string>",
"handle": "<string>",
"name": "<string>"
},
"meta": {
"installs": 123,
"views": 123
},
"sandbox": {
"identifierExtractScript": "<string>",
"messageExtractScript": "<string>"
},
"maxExecutionTime": 123,
"attributes": {}
}
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Whether the client supports bots with multiple instances of the same integration. Set to "true" to receive integration instances keyed by their alias instead of their id. This header will be removed in the future, and the API will always return multiple instances keyed by alias.
Integration Name
Integration version. Either a semver version, semver version range, or the constant string "latest"
Success
Show child attributes
Was this page helpful?