You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2. Set User Email & Alternate ID to the UserID without "ev"
This will most likely be used with functions such as get.user_by_id for User Information which can be parsed.
email=str(user_id).replace('.ev', "")
We can then use email to set the values of emailAddress and alternateUserId
3. Build the Webex Device
There will be a few parameters we can pass through, because there are options:
Is it for Desktop?
Is it for Mobile?
Is there an existing device assigned to the user?
Is it going to be setup as a Shared Call Appearance?
Functions like post.group_devices() will need to be used, alongside get.password_generate() as Webex devices will need custom credentials, it has specific password requirements so anything with PASSWORD and E! appended on the end will work e.g Gp.*9E!
Once this is done, the LinePort will also be the Device Name, which is usually GroupID + Extension + 'WBX-PC' or 'WBX-Mobile'.
4. Enable Integrated IMP
Once we have the Device Built and the Email setup, all we need to do is setup Integrated IMP which is a service that is automatically assigned when WBX-B is applied to the user.
We will use put.user_service_settings() to apply the change:
Webex Builder - Group Task
Functions Needed to be Implemented:
These functions need to be implemented as Webex Requires a service called Integrated IMP.
Webex General Setup:
1. Add WBX-B to User
We need to apply the Webex license before any other changes are made, we already have a function for this
put.user_services
2. Set User Email & Alternate ID to the UserID without "ev"
This will most likely be used with functions such as
get.user_by_id
for User Information which can be parsed.We can then use
email
to set the values ofemailAddress
andalternateUserId
3. Build the Webex Device
There will be a few parameters we can pass through, because there are options:
Functions like
post.group_devices()
will need to be used, alongsideget.password_generate()
as Webex devices will need custom credentials, it has specific password requirements so anything withPASSWORD
andE!
appended on the end will work e.gGp.*9E!
Once this is done, the LinePort will also be the Device Name, which is usually GroupID + Extension + 'WBX-PC' or 'WBX-Mobile'.
4. Enable Integrated IMP
Once we have the Device Built and the Email setup, all we need to do is setup Integrated IMP which is a service that is automatically assigned when WBX-B is applied to the user.
We will use
put.user_service_settings()
to apply the change:Done??????
The text was updated successfully, but these errors were encountered: