Skip to content
This repository has been archived by the owner on Jun 27, 2024. It is now read-only.

Latest commit

 

History

History
33 lines (24 loc) · 1.81 KB

File metadata and controls

33 lines (24 loc) · 1.81 KB

Check Management Server Connection

Check the VoIP management server connection status.

HTTP MethodURLRequires Auth
GET/api/v1/voip/managementServer/checkConnectionyes

{% hint style="info" %} Permission required: manage-voip-contact-center-settings {% endhint %}

Query Parameters

KeyExample ValueDescription
host*localhostThe hostname of the management server.
port*3000The port number of the management server.
username*user1The user name of the administrator user.
password*idosfiejifc354The password of the administrator user.

Example Call

{% code overflow="wrap" %}

curl --location --request GET 'localhost:3000/api/v1/voip/managementServer/checkConnection?host=localhost&port=3000&username=christystha&password=' \
--header 'X-Auth-Token: aEoKaT8qus3IZHlr_OlAzcsnz46SzZLJeqoRbbctcDQ' \
--header 'X-User-Id: 6vHSSqdBHdm2R4gfi' \
--data-raw ''

{% endcode %}

Example Response

{
	"status": "connected" | "connection-error",
	"error?": "string"
}