PlaceModifyRequest
Bases: OCIRequest
Request to configure a WebEx room/place to have the primary endpoint of WebEx Teams device.
placeUserId refers to a WebEx room/place.
webExSIPAddress specifies the WebEx SIP address of the place. The format of this parameter is: user@domain.
The user part specified in webExSIPAddress will be set to the lineport of the place’s primary endpoint. The endpoint
will have a static address with URI set to "sip:user@domain".
The domain specified in webExSIPAddress will be:
- added to the system if it does not exist yet.
- assigned to the service provider/enterprise which the place belongs to, if it has not been assigned yet.
- assigned to the group which the place belongs to, if it has not been assigned yet.
The response is either SuccessResponse or ErrorResponse.
Attributes:
place_user_id (str):
web_ex_sip_address (Optional[str]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import PlaceModifyRequest
client = Client()
command = PlaceModifyRequest(
place_user_id=...,
web_ex_sip_address=...,
)
response = client.command(command)
print(response)