Maximo API Client - v0.9.01
    Preparing search index...

    Interface AllowedAction

    Represents an allowed action that can be performed on a resource

    interface AllowedAction {
        httpmethod: "GET" | "POST" | "PUT" | "DELETE" | "PATCH";
        type: "system" | "wsmethod" | "workflow" | "script";
        impl?: string;
        description?: string | null;
        requestschema?: ActionRequestSchema;
        requestqueryparams?: Record<string, ActionParameter>;
        requestheaders?: Record<string, ActionParameter>;
    }
    Index

    Properties

    httpmethod: "GET" | "POST" | "PUT" | "DELETE" | "PATCH"
    type: "system" | "wsmethod" | "workflow" | "script"
    impl?: string
    description?: string | null
    requestschema?: ActionRequestSchema
    requestqueryparams?: Record<string, ActionParameter>
    requestheaders?: Record<string, ActionParameter>