Get Authorization Group

Get Authorization Group

Retrieve an VCF Operations Orchestrator's authorization group.

Request
URI
GET
https://{api_host}/vco/api/authorization-groups/{id}
COPY
Path Parameters
string
id
Required

id


Authentication
This operation uses the following authentication methods.
Responses
200

The request is successful

Returns WsAuthorizationGroup of type(s) application/json
{
    "id": "string",
    "label": "string",
    "name": "string",
    "description": "string",
    "protectedResources": [
        {
            "type": "string",
            "id": "string"
        }
    ],
    "authorizedEntities": [
        {
            "role": "string",
            "id": "string"
        }
    ]
}
string
id
Optional

id

string
label
Optional

label

string
name
Optional

name

string
description
Optional

description

array of object
protectedResources
Optional

protectedResources

array of object
authorizedEntities
Optional

authorizedEntities


404

Cannot find a group with the specified id.

Returns WsAuthorizationGroup of type(s) application/json
"WsAuthorizationGroup Object"
string
id
Optional

id

string
label
Optional

label

string
name
Optional

name

string
description
Optional

description

array of object
protectedResources
Optional

protectedResources

array of object
authorizedEntities
Optional

authorizedEntities


Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/vco/api/authorization-groups/{id}