Configurações de SIP
Configurar SIP

Configurar SIP

Por meio da chamada abaixo é possível configurar o SIP no dispositivo.

Requisição - GET

http://192.168.3.87/cgi-bin/configManager.cgi?action=setConfig&SIP.UserEnable=false&SIP.AuthID=512&SIP.UserID=512&SIP.AuthPassword=password&SIP.SIPServer=server.com&SIP.SIPServerPort=5060&SIP.DirectCall=false&SIP.AlarmInCallCenter=false

paramtypedescription
setConfig *StringComando para definir configurações
UserEnable *BooleanComando para habilitar/desabilitar
AuthID *NumberIdentificador de autenticação (AuthID)
UserID *NumberIdentificador de usuário (UserID)
AuthPassword *StringSenha de autenticação (AuthPassword)
SIPServer *StringEndereço do servidor SIP
SIPServerPort *NumberPorta do servidor SIP
DirectCall *BooleanComando para realizar chamada direta
AlarmInCallCenter *BooleanComando para ativar/desativar alarme no centro de chamadas

Exemplo de Retorno - text/plain

OK

Exemplos

import requests
 
device_ip = '10.1.35.144'
username = 'admin'
password = 'acesso1234'
 
url = "http://{}/cgi-bin/configManager.cgi?action=setConfig&SIP.UserEnable=false&SIP.AuthID=512&SIP.UserID=512&SIP.AuthPassword=password&SIP.SIPServer=server.com&SIP.SIPServerPort=5060&SIP.DirectCall=false&SIP.AlarmInCallCenter=false".format(
                        str(device_ip),
                    )
 
digest_auth = requests.auth.HTTPDigestAuth(username, password)
rval = requests.get(url, auth=digest_auth, stream=True, timeout=20, verify=False)
 
print(rval.text)