JSON API » machines » machines/update

Updates an existing machine.

Input parameters

Requires authentication and the system role privilege.

NameTypeDescriptionRequiredDefault value
auth_usernameStringAuthentication username.Yes
auth_passwordStringAuthentication password.Yes
idIntegerID of machine to update.Yes
typeString"machine" for normal machine, "service" for service IP address.NoCurrent value.
asteriskInteger1 if the machine runs Asterisk, 0 if not.NoCurrent value.
proxyInteger1 if the machine runs Kamailio, 0 if not.NoCurrent value.
proxy_regionIntegerRegion for calls though proxy, if not set in customer. 0 for none.NoCurrent value.
descriptionStringDescription.NoCurrent value.
domainStringDNS domain.NoCurrent value.
ipaddrStringIP address. May be IPv4 or IPv6. If possible, should be public rather than RFC1918. If the machine has multiple addresses, use the one SIP calls should be delivered to.NoCurrent value.
media_audioInteger1 to accept audio calls, 0 if not.NoCurrent value.
media_videoInteger1 to accept video calls, 0 if not.NoCurrent value.
serverStringHostname without domain.NoCurrent value.
sip_portIntegerPort to deliver SIP calls to. Only used if running Asterisk.NoCurrent value.
validationInteger1 to validate input then return, 0 for full action.No0
weightIntegerWeighting for delivering SIP calls. Only used if running Asterisk.NoCurrent value.
enabledInteger1 for enabled, 0 for disabled.No1

Responses

CodeDescription
201Input passed validation. Only returned if validation=1.
204Success.
400Invalid input parameters specified. Check the key and message fields for more details.
401The authentication details provided are invalid.
402Your role does not allow this.
404The machine does not exist.

Data returned

No data is returned.

Example: Changing the hostname

http://enswitch.example.com/api/json/machines/update/?auth_username=user;auth_password=password;id=123;server=example

{ "responses":[ { "code":"204", "key":"", "message":"OK" } ] }

Change history

VersionChanges
4.3proxy, proxy_region, and enabled input parameters added.
4.1type input parameter added. media_audio parameter input added. media_video parameter input added.
3.14weight input parameter added.
3.13Function added.