curl --request GET \
--url https://api.botpress.cloud/v1/admin/hub/integrations \
--header 'Authorization: Bearer <token>'{
"integrations": [
{
"id": "<string>",
"name": "<string>",
"version": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"title": "<string>",
"description": "<string>",
"iconUrl": "<string>",
"public": true,
"visibility": "public",
"verificationStatus": "unapproved",
"ownerWorkspace": {
"id": "<string>",
"handle": "<string>",
"name": "<string>"
},
"meta": {
"installs": 123,
"views": 123
},
"matchedOn": {
"name": true,
"title": true,
"description": true,
"actions": [
"<string>"
],
"interfaces": [
"<string>"
]
}
}
],
"meta": {
"nextToken": "<string>"
}
}List public integration
curl --request GET \
--url https://api.botpress.cloud/v1/admin/hub/integrations \
--header 'Authorization: Bearer <token>'{
"integrations": [
{
"id": "<string>",
"name": "<string>",
"version": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"title": "<string>",
"description": "<string>",
"iconUrl": "<string>",
"public": true,
"visibility": "public",
"verificationStatus": "unapproved",
"ownerWorkspace": {
"id": "<string>",
"handle": "<string>",
"name": "<string>"
},
"meta": {
"installs": 123,
"views": 123
},
"matchedOn": {
"name": true,
"title": true,
"description": true,
"actions": [
"<string>"
],
"interfaces": [
"<string>"
]
}
}
],
"meta": {
"nextToken": "<string>"
}
}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.
Provide the meta.nextToken value provided in the last API response to retrieve the next page of results
Maximum number of results to return per page
Integration Name
Integration version. Either a semver version or tag "latest"
Filter integrations by implemented interface ID
Filter integrations by implemented interface name (strict match)
Bot ID. Required when filtering for installed integrations
Filter integrations by verification status
unapproved, pending, approved, rejected Search integrations by name, description, actions, and interfaces. Responses include a matchedOn field indicating which fields matched the search.
Sort integrations by field
popularity, name, createdAt, updatedAt, installCount Sort direction (asc or desc)
asc, desc Success
Show child attributes
ID of the Integration
28 - 36Name of the Integration
200Version of the Integration
200Creation date of the Integration in ISO 8601 format
Updating date of the Integration in ISO 8601 format
Title of the integration. This is the name that will be displayed in the UI
1 - 64Description of the integration. This is the description that will be displayed in the UI
256URL of the icon of the integration. This is the icon that will be displayed in the UI
[DEPRECATED] Indicates whether the integration is public. Please use the "visibility" parameter instead.
The integration's visibility. Public integrations are available to all and cannot be updated without creating a new version. Unlisted integrations behave identically to public integrations, but they are not listed in the integration hub. By default, integrations are private and only accessible to the workspace that created them.
public, private, unlisted Status of the integration version verification
unapproved, pending, approved, rejected Metadata about which fields matched the search criteria
Show child attributes
Whether the integration name matched the search term
Whether the integration title matched the search term
Whether the integration description matched the search term
Action names that matched the search term
Interface names that matched the search term
Was this page helpful?