Configure RMQ

Configure RMQ

Api to add rmq configuration

Request
URI
POST
https://{api_host}/api/admin/global/config/rmq
COPY
Header Parameters
string
Accept
Required

application/json

string
Content-Type
Required

application/json


Request Body
{
    "data": {
        "items": [
            {
                "config": {
                    "vhost": "string",
                    "hosts": [
                        {
                            "host": "string",
                            "port": "string"
                        }
                    ]
                }
            }
        ]
    }
}
object
data
Optional

data

Authentication
This operation uses the following authentication methods.
Responses
200

Status 200

{
    "data": {
        "items": [
            {
                "config": {
                    "vhost": "string",
                    "UUID": "string",
                    "hosts": [
                        {
                            "host": "string",
                            "port": "string"
                        }
                    ]
                },
                "section": "string"
            }
        ]
    }
}
object
data
Required

data


Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '{}' https://{api_host}/api/admin/global/config/rmq