When pushing events to the activity stream of people or communities, it gets important to be able to filter events by their generator (like "all salesforce events", "all SAP events" etc.).
This is possible using the app registry by using the ITM endpoint of OM (which is a surprise because not documented well):
{
"name": "com.ibm.orientme.defaults",
"title": "Orient me SelfService extension",
"description": "New bubble and Orient me Search for SelfService",
"services": [
"OrientMe"
],
"extensions": [
{
"id": "c9dfdad1-7e7a-4c7f-8206-02638473a42a",
"name": "New bubble and Orient me Search for SelfService",
"type": "com.ibm.itm.entry.global.default",
"payload": {
"title": "SelfService",
"id": "comboSearch",
"type": "global",
"globalType": "combo",
"filters": {
"source": [
"selfserviceapp"
]
},
"image": {
"type": "svg",
"icon": "data:image/svg+xml;base64,PHN2ZyBmb2N1c2FibGU9ImZhbHNlIiB2ZXJzaW9uPSIxLjEiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJLnN0MHtmaWxsOiM3Nzc2Nzc7fQ0KCS5zdDF7ZmlsbDojNzc3Njc3O3N0cm9rZTojNzc3Njc3O3N0cm9rZS13aWR0aDowLjQ7c3Ryb2tlLW1pdGVybGltaXQ6MTA7fQ0KCS5zdDJ7ZmlsbDojNDE3OEJFO30NCjwvc3R5bGU+PGc+PHBhdGggY2xhc3M9InN0MCIgZD0iTTEyLDJjNC40LDAsOCwzLjYsOCw4YzAsMi40LTEuMSw0LjctMyw2LjJsLTUsNC41di0xLjhWMThsLTAuOS0wLjFDNy4xLDE3LjUsNCwxNC4xLDQsMTBDNCw1LjYsNy42LDIsMTIsMg0KCQkgTTEyLDFjLTUsMC05LDQtOSw5YzAsNC42LDMuNSw4LjQsOCw4LjlWMjNsNi43LTZjMi0xLjcsMy4zLTQuMiwzLjMtN0MyMSw1LDE3LDEsMTIsMUwxMiwxeiI+PC9wYXRoPjwvZz48Zz48cGF0aCBjbGFzcz0ic3QwIiBkPSJNMTIsOC44VjguNVY3bC00LDNsNCwzdi0xLjV2LTAuMmMwLjgtMC4xLDIuOSwwLDQsMS43QzE2LDEzLDE2LDkuNCwxMiw4Ljh6Ij48L3BhdGg+PC9nPjwvc3ZnPg=="
},
"metadata": {
"exId": "comboSearch",
"counterValue": 0,
"label": "selfserviceapp"
},
"script": {
"source": "https://apps.na.collabserv.com/files/customizer/salesforce/svc_scripts/mySalesforce.js?repoName=think-samples",
"function": "__salesforceDemo"
}
},
"path": "new",
"application": "com.ibm.orientme.defaults"
}
]
}
Although I have tried to use an image attribute but my bubble stys empty.
BTW: The script tag is a pretty trick from Stefano Pogliani to inject scripts into OM; this way he achieved kind of a Embedded Experience for OM (which is currently not available otherwise).
So my request here is to enable the image attribute for these kinds of filtering bubbles in the OM ITM bar.