External Conf

External Conf

This endpoint is used to trigger some tasks that are initiated by an external command.

Request
URI
POST
https://{api_host}/v0alpha1/external/{command}
COPY
Path Parameters
string
command
Required

External command names.

Possible values are : signal, adaptor-add, adaptor-del, adaptor-get,

Request Body

This represents the details of the external command.

Responses
200

Successful operation.

Returns Array of NameData of type(s) application/json
[
    {
        "name": "string",
        "data": "string"
    }
]

201

Configuration is successfully created.

Operation doesn't return any data structure

400

Request body is incorrectly formed.

Returns ProblemDetails of type(s) application/problem+json
{
    "type": "string",
    "title": "string",
    "status": 400,
    "detail": "Required field 'counter_names' missing.",
    "instance": "string"
}
string
type
Optional

A URI representing the type of the problem.

string
title
Required

A short summary of the error.

number
status
Required

The HTTP Response code associated with this error.

string
detail
Required

A detailed description of the error.

string
instance
Optional

An optional URI of the instance involved in the problem.