Sometimes, userID and conferenceID is not sufficient for identifying a user or call in your UCaaS, CCaaS platform.
We added the following new identifiers
- customerID: Customer Identifier identifying the customer. Example, "Acme Pvt Ltd."
- tenantID: Tenant Identifier identifying the tenant within a customer. Example, "monster".
- pbxID: PBX Identifier, this can be a numeric or alphanumeric. Example, "acme".
- pbxExtensionID: PBX Extension Identifier identifies the extension within the PBX. Example, 5625.",
- sessionID: SIP session ID if you want to pass that into callstats.
- productName: Human readable product name. Example, Jitsi.
- meetingsName: Human readable conference name. Example, "Weekly team Meeting".
- serverName: Human readable server name instead of using IP addresses to find the server. Example, "jaas-jvb-prod-us-east-121".
let additionalIDs = { customerID: "walmart",
pbxID: "841341", pbxExtensionID: "5625", meetingsName: "Weekly Team Meeting", tenantID: "monster", productName: "Slash Desktop", serverName: "jaas-jvb-prod-us-east-121", } let params = {
siteID: "finland", additionalIDs: additionalIDs, }; let callStats = new callstats(); callStats.initialize(appId, appSecret, "john@callstats.io", csInitCallback, null, params);
Comments
0 comments
Please sign in to leave a comment.