Get Resource Actions

Get Resource Actions

Returns the complete list of available actions that can be performed on a given resource.

Request
URI
GET
https://{api_host}/deployment/api/resources/{resourceId}/actions
COPY
Path Parameters
string
resourceId
Required

Resource ID


Authentication
This operation uses the following authentication methods.
Responses
200

OK

[
    {
        "actionType": "string",
        "dependents": [
            "string"
        ],
        "description": "string",
        "displayName": "string",
        "formDefinition": {
            "formURI": "string",
            "trackProgressInModal": false
        },
        "id": "string",
        "name": "string",
        "orgId": "string",
        "projectId": "string",
        "schema": {
            "$data": "string",
            "$dynamicDefault": "string",
            "$ref": "string",
            "additionalProperties": false,
            "allOf": [
                "JsonSchemaImpl Object"
            ],
            "anyOf": [
                "JsonSchemaImpl Object"
            ],
            "const": {},
            "default": {},
            "description": "string",
            "encrypted": false,
            "enum": [
                {}
            ],
            "format": "string",
            "formatMaximum": "string",
            "formatMinimum": "string",
            "items": "ObjectOrListJsonSchemaImpl Object",
            "maxItems": 0,
            "maxLength": 0,
            "maxProperties": 0,
            "maximum": "number",
            "minItems": 0,
            "minLength": 0,
            "minProperties": 0,
            "minimum": "number",
            "not": "JsonSchemaImpl Object",
            "oneOf": [
                "JsonSchemaImpl Object"
            ],
            "pattern": "string",
            "patternProperties": {
                "patternProperties": "JsonSchemaImpl Object"
            },
            "properties": {
                "properties": "JsonSchemaImpl Object"
            },
            "readOnly": false,
            "required": [
                "string"
            ],
            "title": "string",
            "type": "string",
            "uniqueItems": false,
            "writeOnly": false
        },
        "valid": false
    }
]
Optional

401

Unauthorized

[
    "ResourceAction Object"
]
Optional

404

Not Found

[
    "ResourceAction Object"
]
Optional

Code Samples
COPY
                    curl -H 'Authorization: <value>' https://{api_host}/deployment/api/resources/{resourceId}/actions