PUT - User SIP Contacts

Updates a users SIP contacts

NOTE: 5 is the max amount of sip contats a user can have

Parameters

  • service_provider_id (str): Service Provider ID which hosts Group

  • group_id (str): Group ID which hosts User

  • user_id (str): Target User ID

  • sip_contact (list): List of sip contact details to add. 5 max.

Returns

  • None

How To Use:

my_api.users.put_user_sip_contacts(
    "service_provider_id",
    "group_id",
    "user_id",
    ["[email protected]", "[email protected]", "[email protected]"]
)

Last updated

Was this helpful?