/instance/unlink
Unlink an instance
Request
HTTP Method: POST
Content Type: application/json
Parameters
Property | Type | Description | Required |
---|---|---|---|
| string | host of instance to unlink | required |
| string | name of instance to unlink |
|
| integer | port of instance to unlink (non-negative) |
|
{
"params": {
"host": "string",
"instance": "string",
"port": 123
}
}
Response
HTTP Status: 200
Content Type: application/json
Response
Property | Type | Description |
---|---|---|
| object of type | error response |
| object of type | empty result |
| boolean | response with error or not |
empty_result
Property | Type | Description |
---|---|---|
| string | response message |
error_response
Property | Type | Description |
---|---|---|
| string | error message |
{
"error": {
"message": "string"
},
"result": {
"message": "string"
},
"successful": true
}
HTTP Status: 400
Content Type: application/json
Response
Property | Type | Description |
---|---|---|
| object of type | error response |
| boolean | always false |
error_response
Property | Type | Description |
---|---|---|
| string | error message |
{
"error": {
"message": "string"
},
"successful": false
}