Delinea Script API

View Scripts

Operations 12

GET /v2/userscripts Search scripts #
POST /v2/userscripts Create Script #
GET /v1/userscripts/categories Search script categories #
GET /v2/userscripts/{scriptId} Get Script #
GET /v2/userscripts/history/{scriptHistoryId} Get Script from History #
GET /v1/userscripts/audit Search script audit #
GET /v1/userscripts/usage Search script usage #
PATCH /v1/userscripts/{scriptId} Update Script #
POST /v2/userscripts/test-ps-script Test PowerShell Script #
POST /v2/userscripts/test-sql-script Test SQL Script #
POST /v2/userscripts/test-ssh-script Test Scripts #
PUT /v1/userscripts/{scriptId}/parameters Update Script Parameters #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/delinea-script-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

delinea-script-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Secret Server Rest Activations Script API
  description: REST API documentation for Secret Server. This document describes how to use the REST API. All requests require an authentication token; please see the <a href="../OAuth/">authentication document</a> for more information. The <a href="swagger.json">Swagger specification</a> for this API is also available.
  termsOfService: https://delinea.com/eula
  contact:
    name: Support
    url: https://delinea.com
  version: 11.7.2
servers:
- url: /SecretServer/api
security:
- BearerToken: []
tags:
- name: Script
  description: View Scripts
paths:
  /v2/userscripts:
    get:
      tags:
      - Script
      summary: Search scripts
      description: Search, filter, sort, and page scripts
      operationId: ScriptService_SearchScriptsV2
      parameters:
      - name: filter.scriptCategoryId
        in: query
        description: Filter by script category
        required: false
        x-nullable: true
        schema:
          type: integer
          format: int32
      - name: filter.scriptType
        in: query
        description: Script Type (Powershell = 1, SQL = 2, SSH = 3)
        required: false
        x-nullable: true
        schema:
          type: string
      - name: filter.searchText
        in: query
        description: Only return the items that contain this text in their name
        required: false
        schema:
          type: string
      - name: filter.status
        in: query
        description: Whether to include active, inactive, or both.  Defaults to Active only
        required: false
        schema:
          type: string
      - name: skip
        in: query
        description: Number of records to skip before taking results
        required: false
        schema:
          type: integer
          format: int32
      - name: sortBy[0].direction
        in: query
        description: Sort direction
        required: false
        schema:
          type: string
      - name: sortBy[0].name
        in: query
        description: Sort field name
        required: false
        schema:
          type: string
      - name: sortBy[0].priority
        in: query
        description: Priority index. Sorts with lower values are executed earlier
        required: false
        schema:
          type: integer
          format: int32
      - name: take
        in: query
        description: Maximum number of records to include in results
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: scripts search result object
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagingOfScriptSummaryModel'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
    post:
      tags:
      - Script
      summary: Create Script
      description: Create a new Script
      operationId: ScriptService_CreateScript
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScriptCreateArgsV2'
        description: Script creation options
      responses:
        '200':
          description: Script Model
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScriptModelV2'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v1/userscripts/categories:
    get:
      tags:
      - Script
      summary: Search script categories
      description: Search, filter, sort, and script categories
      operationId: ScriptService_SearchScriptCategory
      parameters:
      - name: filter.searchText
        in: query
        description: Only return the items that contain this text in their name
        required: false
        schema:
          type: string
      - name: skip
        in: query
        description: Number of records to skip before taking results
        required: false
        schema:
          type: integer
          format: int32
      - name: sortBy[0].direction
        in: query
        description: Sort direction
        required: false
        schema:
          type: string
      - name: sortBy[0].name
        in: query
        description: Sort field name
        required: false
        schema:
          type: string
      - name: sortBy[0].priority
        in: query
        description: Priority index. Sorts with lower values are executed earlier
        required: false
        schema:
          type: integer
          format: int32
      - name: take
        in: query
        description: Maximum number of records to include in results
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: script categories
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagingOfScriptCategorySummary'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v2/userscripts/{scriptId}:
    get:
      tags:
      - Script
      summary: Get Script
      description: Get a single script by ID
      operationId: ScriptService_GetScript
      parameters:
      - name: scriptId
        in: path
        description: scriptId
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Script Model
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScriptModelV2'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v2/userscripts/history/{scriptHistoryId}:
    get:
      tags:
      - Script
      summary: Get Script from History
      description: Get an older version of this script from history
      operationId: ScriptService_GetScriptHistoryItem
      parameters:
      - name: scriptHistoryId
        in: path
        description: scriptHistoryId
        required: true
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: Script History Model
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScriptHistoryModel'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v1/userscripts/audit:
    get:
      tags:
      - Script
      summary: Search script audit
      description: Search, filter, sort, and script audit
      operationId: ScriptService_SearchScriptAudit
      parameters:
      - name: isExporting
        in: query
        description: isExporting
        required: false
        schema:
          type: boolean
      - name: filter.scriptId
        in: query
        description: Only return audit entries for this script
        required: false
        x-nullable: true
        schema:
          type: integer
          format: int32
      - name: skip
        in: query
        description: Number of records to skip before taking results
        required: false
        schema:
          type: integer
          format: int32
      - name: sortBy[0].direction
        in: query
        description: Sort direction
        required: false
        schema:
          type: string
      - name: sortBy[0].name
        in: query
        description: Sort field name
        required: false
        schema:
          type: string
      - name: sortBy[0].priority
        in: query
        description: Priority index. Sorts with lower values are executed earlier
        required: false
        schema:
          type: integer
          format: int32
      - name: take
        in: query
        description: Maximum number of records to include in results
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: script audits
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagingOfScriptAuditSummary'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v1/userscripts/usage:
    get:
      tags:
      - Script
      summary: Search script usage
      description: Search, filter, sort, and script usage
      operationId: ScriptService_SearchScriptUsage
      parameters:
      - name: filter.scriptId
        in: query
        description: Only show where a specific script is used.
        required: false
        x-nullable: true
        schema:
          type: integer
          format: int32
      - name: filter.scriptType
        in: query
        description: Only show a specific script type.
        required: false
        schema:
          type: string
      - name: filter.usageType
        in: query
        description: Only show a specific usage type.
        required: false
        schema:
          type: string
      - name: skip
        in: query
        description: Number of records to skip before taking results
        required: false
        schema:
          type: integer
          format: int32
      - name: sortBy[0].direction
        in: query
        description: Sort direction
        required: false
        schema:
          type: string
      - name: sortBy[0].name
        in: query
        description: Sort field name
        required: false
        schema:
          type: string
      - name: sortBy[0].priority
        in: query
        description: Priority index. Sorts with lower values are executed earlier
        required: false
        schema:
          type: integer
          format: int32
      - name: take
        in: query
        description: Maximum number of records to include in results
        required: false
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: script usage
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PagingOfScriptUsageSummary'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v1/userscripts/{scriptId}:
    patch:
      tags:
      - Script
      summary: Update Script
      description: Update or patch a script model
      operationId: ScriptService_UpdateScript
      parameters:
      - name: scriptId
        in: path
        description: scriptId
        required: true
        schema:
          type: integer
          format: int32
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScriptUpdateArgs'
        description: args
      responses:
        '200':
          description: Script Model
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScriptModelV2'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v2/userscripts/test-ps-script:
    post:
      tags:
      - Script
      summary: Test PowerShell Script
      description: Run a script to see if PowerShell is configured correctly and if a script will run.  If ScriptId is omitted a very basic test script is attempted.
      operationId: ScriptService_TestPsScript
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RemoteScriptTestPsArgs'
        description: args
      responses:
        '200':
          description: PowerShell Test Result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TestRemoteScriptPsResponseModel'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v2/userscripts/test-sql-script:
    post:
      tags:
      - Script
      summary: Test SQL Script
      description: Run a script to see if SQL is configured correctly and if a script will run.  If ScriptId is omitted a very basic test script is attempted.
      operationId: ScriptService_TestSqlScript
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RemoteScriptTestSqlArgs'
        description: args
      responses:
        '200':
          description: SQL Test Result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TestRemoteScriptSqlResponseModel'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v2/userscripts/test-ssh-script:
    post:
      tags:
      - Script
      summary: Test Scripts
      description: Run a script to see if PowerShell, SQL, or SSH is configured correctly and if a script will run.  If ScriptId is omitted a very basic test script is attempted.
      operationId: ScriptService_TestSshScript
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RemoteScriptTestSshArgs'
        description: args
      responses:
        '200':
          description: PowerShell Test Result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TestRemoteScriptSshResponseModel'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
  /v1/userscripts/{scriptId}/parameters:
    put:
      tags:
      - Script
      summary: Update Script Parameters
      description: Update all the parameters for a script including any variable parameters and specific settings for this script.
      operationId: ScriptService_UpdateScriptParameters
      parameters:
      - name: scriptId
        in: path
        description: scriptId
        required: true
        schema:
          type: integer
          format: int32
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ScriptParameterUpdateArgs'
        description: args
      responses:
        '200':
          description: Script Model
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ScriptModelV2'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BadRequestResponse'
        '403':
          description: Authentication failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AuthenticationFailedResponse'
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/InternalServerErrorResponse'
      deprecated: false
components:
  schemas:
    ScriptAdditionalDataModel:
      description: Additional data for this script including parameters and settings
      properties:
        sqlSettings:
          $ref: '#/components/schemas/ScriptSqlAdditionalDataModel'
        sshSettings:
          $ref: '#/components/schemas/ScriptSshAdditionalDataModel'
      type: object
    ScriptSshParameterModel:
      description: Any parameters that can be used in the script
      properties:
        parameterName:
          description: ParameterName
          type: string
        parameterSshType:
          $ref: '#/components/schemas/ScriptSshParamType'
      type: object
    ScriptSummaryModel:
      description: Script summary for search results
      properties:
        description:
          description: Script Description
          type: string
        isActive:
          description: Whether the Script is Active
          type: boolean
        name:
          description: Script Name
          type: string
        scriptCategoryId:
          description: Script Category Id
          type: integer
          format: int32
        scriptCategoryName:
          description: Script Category Name
          type: string
        scriptId:
          description: Script Id
          type: integer
          format: int32
        scriptType:
          $ref: '#/components/schemas/UserScriptType'
        usageCount:
          description: Usage Count
          type: integer
          format: int32
      type: object
    RemoteScriptPsTestData:
      description: If this is a PS script populate these settings
      properties:
        scriptArgs:
          description: Any args that will get passed to the script
          type: string
      type: object
    PagingOfScriptAuditSummary:
      description: Specify paging and sorting options for querying records and returning results
      properties:
        batchCount:
          description: Number of result batches available with current query options
          type: integer
          format: int32
        currentPage:
          description: Index of current result page
          type: integer
          format: int32
        hasNext:
          description: Whether there are any results in additional pages
          type: boolean
        hasPrev:
          description: Whether there are any results in previous pages
          type: boolean
        nextSkip:
          description: Correct value of 'skip' for the next page of results
          type: integer
          format: int32
        pageCount:
          description: Number of result pages available with current query options
          type: integer
          format: int32
        prevSkip:
          description: Correct value of 'skip' for the previous page of results
          type: integer
          format: int32
        records:
          description: Query results
          items:
            $ref: '#/components/schemas/ScriptAuditSummary'
          type: array
        severity:
          $ref: '#/components/schemas/Severity'
        skip:
          description: Number of records to skip before taking results
          type: integer
          format: int32
        sortBy:
          description: List of sort properties
          items:
            $ref: '#/components/schemas/Sort'
          type: array
        success:
          description: Whether the query executed successfully
          type: boolean
        take:
          description: Maximum number of records to include in results
          type: integer
          format: int32
        total:
          description: Total number of results available
          type: integer
          format: int32
      type: object
    Severity:
      description: Error severity level
      properties: {}
      type: string
      enum:
      - None
      - Retry
      - Warn
      - Critical
      - Fatal
    SshScriptLineEndingType:
      description: The type of line ending that should be sent to the script
      properties: {}
      type: string
      enum:
      - NewLine
      - CarriageReturn
      - CarriageReturnNewLine
    ScriptCreateArgsV2:
      description: Create script args
      properties:
        data:
          $ref: '#/components/schemas/ScriptCreateModel'
      type: object
    ScriptModelV2:
      description: Script
      properties:
        additionalData:
          $ref: '#/components/schemas/ScriptAdditionalDataModel'
        concurrencyId:
          description: Script Global Id
          type: string
        description:
          description: Script Description
          type: string
        isActive:
          description: Whether the Script is Active
          type: boolean
        name:
          description: Script Name
          type: string
        script:
          description: Script Text
          type: string
        scriptCategoryId:
          description: Script Category Id
          type: integer
          format: int32
        scriptCategoryName:
          description: Script Category Name
          type: string
        scriptId:
          description: Script Id
          type: integer
          format: int32
        scriptType:
          $ref: '#/components/schemas/UserScriptType'
        usageCount:
          description: Usage Count
          type: integer
          format: int32
      type: object
    RemoteScriptTestPsData:
      description: Test powershell
      properties:
        domain:
          description: Domain (ignored if SecretId)
          type: string
        password:
          description: Password (ignored if SecretId)
          type: string
        powerShellSettings:
          $ref: '#/components/schemas/RemoteScriptPsTestData'
        scriptId:
          description: Test a specific script to test if that script runs.  If left empty then a basic test script will be run.
          type:
          - integer
          - 'null'
          format: int32
        secretId:
          description: Run the script as these credentials.  The selected secret needs to be accessible for permissions, approval, doublelock, checkout, and all restricted actions otherwise this will fail.
          type:
          - integer
          - 'null'
          format: int32
        siteId:
          description: The site that should run this script
          type: integer
          format: int32
        username:
          description: User name (ignored if SecretId)
          type: string
      type: object
    ScriptCreateModel:
      description: Create a script
      properties:
        description:
          description: Script Description
          type: string
        isActive:
          description: Whether the Script is Active
          type: boolean
        name:
          description: Script Name
          type: string
        passwordChangerId:
          description: Default Password Changer
          type:
          - integer
          - 'null'
          format: int32
        script:
          description: Script Text
          type: string
        scriptCategoryId:
          description: Script Category Id
          type: integer
          format: int32
        scriptType:
          $ref: '#/components/schemas/UserScriptType'
      type: object
    RemoteScriptSqlTestData:
      description: If this is a PS script populate these settings
      properties:
        asSys:
          description: AsSys
          type: boolean
        database:
          description: Database
          type: string
        port:
          description: Port
          type:
          - integer
          - 'null'
          format: int32
        runAs:
          $ref: '#/components/schemas/RemoteScriptSqlRunAsType'
        scriptArgs:
          description: ScriptArgs
          items:
            $ref: '#/components/schemas/RemoteSqlTestScriptArgument'
          type: array
        server:
          description: Server
          type: string
        sqlCertDn:
          description: SqlCertDn
          type: string
        tnsAdmin:
          description: TnsAdmin
          type: string
        walletLocation:
          description: WalletLocation
          type: string
      type: object
    ScriptSshAdditionalDataModel:
      description: Additional settings for SSH scripts
      properties:
        doNotUseEnvironment:
          description: Do not use environment variables in script
          type: boolean
        lineEnding:
          $ref: '#/components/schemas/SshScriptLineEndingType'
        parameters:
          description: Any parameters that can be used in the script
          items:
            $ref: '#/components/schemas/ScriptSshParameterModel'
          type: array
        port:
          description: The port that should be used by an SSH script
          type:
          - integer
          - 'null'
          format: int32
      type: object
    BadRequestResponse:
      description: Response object for invalid requests
      required:
      - message
      properties:
        message:
          description: Error message
          type: string
        messageDetail:
          description: Error message detail
          type: string
        errorCode:
          description: Error message code
          type: string
        modelState:
          description: An object describing validation errors
          type: object
      type: object
    UpdateFieldValueOfInt32:
      description: How many days until the password expires.
      properties:
        dirty:
          description: Dirty
          type: boolean
        value:
          description: Value
          type: integer
          format: int32
      type: object
    RemoteSqlTestScriptArgument:
      description: ScriptArgs
      properties:
        dbType:
          $ref: '#/components/schemas/ScriptSqlParamType'
        name:
          description: Name
          type: string
        value:
          $ref: '#/components/schemas/Object'
      type: object
    ScriptSqlAdditionalDataModel:
      description: Additional settings for SQL scripts
      properties:
        database:
          description: The database name to connect to
          type: string
        parameters:
          description: Parameters for this sql script
          items:
            $ref: '#/components/schemas/ScriptSqlParamModel'
          type: array
        passwordChangerId:
          description: Which password changer this is used with
          type: integer
          format: int32
        passwordChangerName:
          description: Which password changer this is used with
          type: string
        port:
          description: A specific port to use
          type:
          - integer
          - 'null'
          format: int32
      type: object
    ScriptSshAdditionalDataUpdateModel:
      description: Additional settings for SSH scripts.  Script type must be SSH
      properties:
        doNotUseEnvironment:
          description: Do not use environment variables in script
          type: boolean
        lineEnding:
          $ref: '#/components/schemas/SshScriptLineEndingType'
        parameters:
          description: Any parameters that can be used in the script
          items:
            $ref: '#/components/schemas/ScriptSshParameterModel'
          type: array
        port:
          description: The port that should be used by an SSH script
          type:
          - integer
          - 'null'
          format: int32
      type: object
    ScriptUpdateArgs:
      description: Update script args
      properties:
        data:
          $ref: '#/components/schemas/ScriptUpdateModel'
      type: object
    PagingOfScriptSummaryModel:
      description: Specify paging and sorting options for querying records and returning results
      properties:
        batchCount:
          description: Number of result batches available with current query options
          type: integer
       

# --- truncated at 32 KB (51 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/delinea/refs/heads/main/openapi/delinea-script-api-openapi.yml