GET - User Registration
Gets a users devices and if those devices are registered. This includes soft phones.
Parameters
user_id (str): Target user ID to check registration
Returns
dict: All users devices and details on device such as registration.
How To Use:
my_api.registration.get_user_registration(
"[email protected]"
)
Example Returned Data of SIP Passwords (Formatted)
{
"registrations": [
{
"deviceLevel": "Group",
"deviceName": "ECG_0004f2accaf7",
"order": 1,
"uRI": "sip:[email protected]:5060;transport=udp;jtr=22-1808",
"expiration": "Thu May 23 08:33:00 EDT 2019",
"line/Port": "[email protected]",
"endpointType": "Primary",
"publicNetAddress": null,
"publicPort": null,
"privateNetAddress": null,
"privatePort": null,
"userAgent": "Polycom/5.4.1.14510 PolycomVVX-VVX_500-UA/5.4.1.14510",
"lockoutStarted": null,
"lockoutExpires": null,
"lockoutCount": 0,
"accessInfo": null
}
],
"userId": "[email protected]"
}
Last updated
Was this helpful?