/instance/unlink

Follow

Unlink an instance

Request

HTTP Method: POST
Content Type: application/json

Property

Type

Description

Required

host

string

host of instance to unlink

required

instance

string

name of instance to unlink

port

integer

port of instance to unlink (non-negative)

{
    "params": {
        "host": "string",
        "instance": "string",
        "port": 123
    }
}

Response

Content Type: application/json

Property

Type

Description

error

object of type error_response

error response

result

object of type empty_result

empty result

successful

boolean

response with error or not

empty_result

Property

Type

Description

message

string

response message

error_response

Property

Type

Description

message

string

error message

{
    "error": {
        "message": "string"
    },
    "result": {
        "message": "string"
    },
    "successful": true
}

Content Type: application/json

Property

Type

Description

error

object of type error_response

error response

successful

boolean

always false

error_response

Property

Type

Description

message

string

error message

{
    "error": {
        "message": "string"
    },
    "successful": false
}
Have more questions? Submit a request

Comments