Vapi Metadata Authentication Service Operation get

Vapi Metadata Authentication Service Operation get

Retrieves the authentication information about an operation element corresponding to operationId contained in the service element corresponding to serviceId.

Request
URI
GET
https://{api_host}/api/vapi/metadata/authentication/service/{serviceId}/operation/{operationId}
COPY
Path Parameters
string
serviceId
Required

Identifier of the service element.

The parameter must be an identifier for the resource type: com.vmware.vapi.service.

string
operationId
Required

Identifier of the operation element.

The parameter must be an identifier for the resource type: com.vmware.vapi.operation.


Authentication
This operation uses the following authentication methods.
Responses
200

The Vapi Metadata Authentication OperationInfo instance that corresponds to operationId.

Returns Vapi Metadata Authentication OperationInfo of type(s) application/json
{
    "schemes": [
        {
            "scheme_type": "string",
            "session_manager": "string",
            "scheme": "string"
        }
    ]
}
array of object
schemes
Required

List of authentication schemes used by an operation element. The authentication scheme specified on the service element corresponding to this operation element is ignored.


404

if the service element associated with serviceId does not exist.

if the operation element associated with operationId does not exist.

if the operation element associated with operationId does not have any authentication information.

Returns Vapi Std Errors NotFound of type(s) application/json
This response body class contains all of the following: InlineVapi Std Errors NotFound0
"Vapi Std Errors NotFound Object"

Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/api/vapi/metadata/authentication/service/{serviceId}/operation/{operationId}