Argo CD ApplicationService API

The ApplicationService API from Argo CD — 26 operation(s) for applicationservice.

Operations 32

GET /api/v1/applications List returns list of applications #
POST /api/v1/applications Create creates an application #
POST /api/v1/applications/manifestsWithFiles GetManifestsWithFiles returns application manifests using provided files to generate them #
GET /api/v1/applications/{appName}/server-side-diff ServerSideDiff performs server-side diff calculation using dry-run apply #
PUT /api/v1/applications/{application.metadata.name} Update updates an application #
GET /api/v1/applications/{applicationName}/managed-resources ManagedResources returns list of managed resources #
GET /api/v1/applications/{applicationName}/resource-tree ResourceTree returns resource tree #
GET /api/v1/applications/{name} Get returns an application by name #
DELETE /api/v1/applications/{name} Delete deletes an application #
PATCH /api/v1/applications/{name} Patch patch an application #
GET /api/v1/applications/{name}/events ListResourceEvents returns a list of event resources #
GET /api/v1/applications/{name}/logs PodLogs returns stream of log entries for the specified pod. Pod #
GET /api/v1/applications/{name}/manifests GetManifests returns application manifests #
DELETE /api/v1/applications/{name}/operation TerminateOperation terminates the currently running operation #
GET /api/v1/applications/{name}/pods/{podName}/logs PodLogs returns stream of log entries for the specified pod. Pod #
GET /api/v1/applications/{name}/resource GetResource returns single application resource #
POST /api/v1/applications/{name}/resource PatchResource patch single application resource #
DELETE /api/v1/applications/{name}/resource DeleteResource deletes a single application resource #
GET /api/v1/applications/{name}/resource/actions ListResourceActions returns list of resource actions #
POST /api/v1/applications/{name}/resource/actions RunResourceAction runs a resource action #
POST /api/v1/applications/{name}/resource/actions/v2 RunResourceActionV2 runs a resource action with parameters #
GET /api/v1/applications/{name}/revisions/{revision}/chartdetails Get the chart metadata (description, maintainers, home) for a specific revision of the application #
GET /api/v1/applications/{name}/revisions/{revision}/metadata Get the meta-data (author, date, tags, message) for a specific revision of the application #
GET /api/v1/applications/{name}/revisions/{revision}/ocimetadata Get the chart metadata (description, maintainers, home) for a specific revision of the application #
POST /api/v1/applications/{name}/rollback Rollback syncs an application to its target state #
PUT /api/v1/applications/{name}/spec UpdateSpec updates an application spec #
POST /api/v1/applications/{name}/sync Sync syncs an application to its target state #
GET /api/v1/applications/{name}/syncwindows Get returns sync windows of the application #
GET /api/v1/stream/applications Watch returns stream of application change events #
GET /api/v1/stream/applications/{applicationName}/resource-tree Watch returns stream of application resource tree #

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/argocd-applicationservice-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

argocd-applicationservice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Description of all APIs
  title: Consolidate Services AccountService Application Service API
  version: version not set
tags:
- name: ApplicationService
paths:
  /api/v1/applications:
    get:
      tags:
      - ApplicationService
      summary: List returns list of applications
      operationId: ApplicationService_List
      parameters:
      - description: the application's name.
        name: name
        in: query
        schema:
          type: string
      - description: forces application reconciliation if set to 'hard'.
        name: refresh
        in: query
        schema:
          type: string
      - description: the project names to restrict returned list applications.
        name: projects
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - description: when specified with a watch call, shows changes that occur after that particular version of a resource.
        name: resourceVersion
        in: query
        schema:
          type: string
      - description: the selector to restrict returned list to applications only with matched labels.
        name: selector
        in: query
        schema:
          type: string
      - description: the repoURL to restrict returned list applications.
        name: repo
        in: query
        schema:
          type: string
      - description: the application's namespace.
        name: appNamespace
        in: query
        schema:
          type: string
      - description: the project names to restrict returned list applications (legacy name for backwards-compatibility).
        name: project
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1alpha1ApplicationList'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
    post:
      tags:
      - ApplicationService
      summary: Create creates an application
      operationId: ApplicationService_Create
      parameters:
      - name: upsert
        in: query
        schema:
          type: boolean
      - name: validate
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1alpha1Application'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1alpha1Application'
        required: true
  /api/v1/applications/manifestsWithFiles:
    post:
      tags:
      - ApplicationService
      summary: GetManifestsWithFiles returns application manifests using provided files to generate them
      operationId: ApplicationService_GetManifestsWithFiles
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/repositoryManifestResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/applicationApplicationManifestQueryWithFilesWrapper'
        description: ' (streaming inputs)'
        required: true
  /api/v1/applications/{appName}/server-side-diff:
    get:
      tags:
      - ApplicationService
      summary: ServerSideDiff performs server-side diff calculation using dry-run apply
      operationId: ApplicationService_ServerSideDiff
      parameters:
      - name: appName
        in: path
        required: true
        schema:
          type: string
      - name: appNamespace
        in: query
        schema:
          type: string
      - name: project
        in: query
        schema:
          type: string
      - name: targetManifests
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/applicationApplicationServerSideDiffResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
  /api/v1/applications/{application.metadata.name}:
    put:
      tags:
      - ApplicationService
      summary: Update updates an application
      operationId: ApplicationService_Update
      parameters:
      - description: 'Name must be unique within a namespace. Is required when creating resources, although

          some resources may allow a client to request the generation of an appropriate name

          automatically. Name is primarily intended for creation idempotence and configuration

          definition.

          Cannot be updated.

          More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names#names

          +optional'
        name: application.metadata.name
        in: path
        required: true
        schema:
          type: string
      - name: validate
        in: query
        schema:
          type: boolean
      - name: project
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1alpha1Application'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1alpha1Application'
        required: true
  /api/v1/applications/{applicationName}/managed-resources:
    get:
      tags:
      - ApplicationService
      summary: ManagedResources returns list of managed resources
      operationId: ApplicationService_ManagedResources
      parameters:
      - name: applicationName
        in: path
        required: true
        schema:
          type: string
      - name: namespace
        in: query
        schema:
          type: string
      - name: name
        in: query
        schema:
          type: string
      - name: version
        in: query
        schema:
          type: string
      - name: group
        in: query
        schema:
          type: string
      - name: kind
        in: query
        schema:
          type: string
      - name: appNamespace
        in: query
        schema:
          type: string
      - name: project
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/applicationManagedResourcesResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
  /api/v1/applications/{applicationName}/resource-tree:
    get:
      tags:
      - ApplicationService
      summary: ResourceTree returns resource tree
      operationId: ApplicationService_ResourceTree
      parameters:
      - name: applicationName
        in: path
        required: true
        schema:
          type: string
      - name: namespace
        in: query
        schema:
          type: string
      - name: name
        in: query
        schema:
          type: string
      - name: version
        in: query
        schema:
          type: string
      - name: group
        in: query
        schema:
          type: string
      - name: kind
        in: query
        schema:
          type: string
      - name: appNamespace
        in: query
        schema:
          type: string
      - name: project
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1alpha1ApplicationTree'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
  /api/v1/applications/{name}:
    get:
      tags:
      - ApplicationService
      summary: Get returns an application by name
      operationId: ApplicationService_Get
      parameters:
      - description: the application's name
        name: name
        in: path
        required: true
        schema:
          type: string
      - description: forces application reconciliation if set to 'hard'.
        name: refresh
        in: query
        schema:
          type: string
      - description: the project names to restrict returned list applications.
        name: projects
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - description: when specified with a watch call, shows changes that occur after that particular version of a resource.
        name: resourceVersion
        in: query
        schema:
          type: string
      - description: the selector to restrict returned list to applications only with matched labels.
        name: selector
        in: query
        schema:
          type: string
      - description: the repoURL to restrict returned list applications.
        name: repo
        in: query
        schema:
          type: string
      - description: the application's namespace.
        name: appNamespace
        in: query
        schema:
          type: string
      - description: the project names to restrict returned list applications (legacy name for backwards-compatibility).
        name: project
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1alpha1Application'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
    delete:
      tags:
      - ApplicationService
      summary: Delete deletes an application
      operationId: ApplicationService_Delete
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: cascade
        in: query
        schema:
          type: boolean
      - name: propagationPolicy
        in: query
        schema:
          type: string
      - name: appNamespace
        in: query
        schema:
          type: string
      - name: project
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/applicationApplicationResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
    patch:
      tags:
      - ApplicationService
      summary: Patch patch an application
      operationId: ApplicationService_Patch
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1alpha1Application'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/applicationApplicationPatchRequest'
        required: true
  /api/v1/applications/{name}/events:
    get:
      tags:
      - ApplicationService
      summary: ListResourceEvents returns a list of event resources
      operationId: ApplicationService_ListResourceEvents
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: resourceNamespace
        in: query
        schema:
          type: string
      - name: resourceName
        in: query
        schema:
          type: string
      - name: resourceUID
        in: query
        schema:
          type: string
      - name: appNamespace
        in: query
        schema:
          type: string
      - name: project
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1EventList'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
  /api/v1/applications/{name}/links:
    get:
      tags:
      - ApplicationService
      summary: ListLinks returns the list of all application deep links
      operationId: ApplicationService_ListLinks
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: namespace
        in: query
        schema:
          type: string
      - name: project
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/applicationLinksResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
  /api/v1/applications/{name}/logs:
    get:
      tags:
      - ApplicationService
      summary: PodLogs returns stream of log entries for the specified pod. Pod
      operationId: ApplicationService_PodLogs2
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: namespace
        in: query
        schema:
          type: string
      - name: podName
        in: query
        schema:
          type: string
      - name: container
        in: query
        schema:
          type: string
      - name: sinceSeconds
        in: query
        schema:
          type: string
          format: int64
      - description: 'Represents seconds of UTC time since Unix epoch

          1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to

          9999-12-31T23:59:59Z inclusive.'
        name: sinceTime.seconds
        in: query
        schema:
          type: string
          format: int64
      - description: 'Non-negative fractions of a second at nanosecond resolution. Negative

          second values with fractions must still have non-negative nanos values

          that count forward in time. Must be from 0 to 999,999,999

          inclusive. This field may be limited in precision depending on context.'
        name: sinceTime.nanos
        in: query
        schema:
          type: integer
          format: int32
      - name: tailLines
        in: query
        schema:
          type: string
          format: int64
      - name: follow
        in: query
        schema:
          type: boolean
      - name: untilTime
        in: query
        schema:
          type: string
      - name: filter
        in: query
        schema:
          type: string
      - name: kind
        in: query
        schema:
          type: string
      - name: group
        in: query
        schema:
          type: string
      - name: resourceName
        in: query
        schema:
          type: string
      - name: previous
        in: query
        schema:
          type: boolean
      - name: appNamespace
        in: query
        schema:
          type: string
      - name: project
        in: query
        schema:
          type: string
      - name: matchCase
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: A successful response.(streaming responses)
          content:
            application/json:
              schema:
                type: object
                title: Stream result of applicationLogEntry
                properties:
                  error:
                    $ref: '#/components/schemas/runtimeStreamError'
                  result:
                    $ref: '#/components/schemas/applicationLogEntry'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
  /api/v1/applications/{name}/manifests:
    get:
      tags:
      - ApplicationService
      summary: GetManifests returns application manifests
      operationId: ApplicationService_GetManifests
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: revision
        in: query
        schema:
          type: string
      - name: appNamespace
        in: query
        schema:
          type: string
      - name: project
        in: query
        schema:
          type: string
      - name: sourcePositions
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
            format: int64
      - name: revisions
        in: query
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      - name: noCache
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/repositoryManifestResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
  /api/v1/applications/{name}/operation:
    delete:
      tags:
      - ApplicationService
      summary: TerminateOperation terminates the currently running operation
      operationId: ApplicationService_TerminateOperation
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: appNamespace
        in: query
        schema:
          type: string
      - name: project
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/applicationOperationTerminateResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
  /api/v1/applications/{name}/pods/{podName}/logs:
    get:
      tags:
      - ApplicationService
      summary: PodLogs returns stream of log entries for the specified pod. Pod
      operationId: ApplicationService_PodLogs
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: podName
        in: path
        required: true
        schema:
          type: string
      - name: namespace
        in: query
        schema:
          type: string
      - name: container
        in: query
        schema:
          type: string
      - name: sinceSeconds
        in: query
        schema:
          type: string
          format: int64
      - description: 'Represents seconds of UTC time since Unix epoch

          1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to

          9999-12-31T23:59:59Z inclusive.'
        name: sinceTime.seconds
        in: query
        schema:
          type: string
          format: int64
      - description: 'Non-negative fractions of a second at nanosecond resolution. Negative

          second values with fractions must still have non-negative nanos values

          that count forward in time. Must be from 0 to 999,999,999

          inclusive. This field may be limited in precision depending on context.'
        name: sinceTime.nanos
        in: query
        schema:
          type: integer
          format: int32
      - name: tailLines
        in: query
        schema:
          type: string
          format: int64
      - name: follow
        in: query
        schema:
          type: boolean
      - name: untilTime
        in: query
        schema:
          type: string
      - name: filter
        in: query
        schema:
          type: string
      - name: kind
        in: query
        schema:
          type: string
      - name: group
        in: query
        schema:
          type: string
      - name: resourceName
        in: query
        schema:
          type: string
      - name: previous
        in: query
        schema:
          type: boolean
      - name: appNamespace
        in: query
        schema:
          type: string
      - name: project
        in: query
        schema:
          type: string
      - name: matchCase
        in: query
        schema:
          type: boolean
      responses:
        '200':
          description: A successful response.(streaming responses)
          content:
            application/json:
              schema:
                type: object
                title: Stream result of applicationLogEntry
                properties:
                  error:
                    $ref: '#/components/schemas/runtimeStreamError'
                  result:
                    $ref: '#/components/schemas/applicationLogEntry'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
  /api/v1/applications/{name}/resource:
    get:
      tags:
      - ApplicationService
      summary: GetResource returns single application resource
      operationId: ApplicationService_GetResource
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: namespace
        in: query
        schema:
          type: string
      - name: resourceName
        in: query
        schema:
          type: string
      - name: version
        in: query
        schema:
          type: string
      - name: group
        in: query
        schema:
          type: string
      - name: kind
        in: query
        schema:
          type: string
      - name: appNamespace
        in: query
        schema:
          type: string
      - name: project
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/applicationApplicationResourceResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
    post:
      tags:
      - ApplicationService
      summary: PatchResource patch single application resource
      operationId: ApplicationService_PatchResource
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: namespace
        in: query
        schema:
          type: string
      - name: resourceName
        in: query
        schema:
          type: string
      - name: version
        in: query
        schema:
          type: string
      - name: group
        in: query
        schema:
          type: string
      - name: kind
        in: query
        schema:
          type: string
      - name: patchType
        in: query
        schema:
          type: string
      - name: appNamespace
        in: query
        schema:
          type: string
      - name: project
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/applicationApplicationResourceResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
      requestBody:
        content:
          application/json:
            schema:
              type: string
        required: true
    delete:
      tags:
      - ApplicationService
      summary: DeleteResource deletes a single application resource
      operationId: ApplicationService_DeleteResource
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: namespace
        in: query
        schema:
          type: string
      - name: resourceName
        in: query
        schema:
          type: string
      - name: version
        in: query
        schema:
          type: string
      - name: group
        in: query
        schema:
          type: string
      - name: kind
        in: query
        schema:
          type: string
      - name: force
        in: query
        schema:
          type: boolean
      - name: orphan
        in: query
        schema:
          type: boolean
      - name: appNamespace
        in: query
        schema:
          type: string
      - name: project
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/applicationApplicationResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
  /api/v1/applications/{name}/resource/actions:
    get:
      tags:
      - ApplicationService
      summary: ListResourceActions returns list of resource actions
      operationId: ApplicationService_ListResourceActions
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: namespace
        in: query
        schema:
          type: string
      - name: resourceName
        in: query
        schema:
          type: string
      - name: version
        in: query
        schema:
          type: string
      - name: group
        in: query
        schema:
          type: string
      - name: kind
        in: query
        schema:
          type: string
      - name: appNamespace
        in: query
        schema:
          type: string
      - name: project
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/applicationResourceActionsListResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
    post:
      description: 'Deprecated: use RunResourceActionV2 instead. This version does not support resource action parameters but is

        maintained for backward compatibility. It will be removed in a future release.'
      tags:
      - ApplicationService
      summary: RunResourceAction runs a resource action
      operationId: ApplicationService_RunResourceAction
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: namespace
        in: query
        schema:
          type: string
      - name: resourceName
        in: query
        schema:
          type: string
      - name: version
        in: query
        schema:
          type: string
      - name: group
        in: query
        schema:
          type: string
      - name: kind
        in: query
        schema:
          type: string
      - name: appNamespace
        in: query
        schema:
          type: string
      - name: project
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/applicationApplicationResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
      requestBody:
        content:
          application/json:
            schema:
              type: string
        required: true
  /api/v1/applications/{name}/resource/actions/v2:
    post:
      tags:
      - ApplicationService
      summary: RunResourceActionV2 runs a resource action with parameters
      operationId: ApplicationService_RunResourceActionV2
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/applicationApplicationResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/runtimeError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/applicationResourceActionRunRequestV2'
        required: true
  /api/v1/applications/{name}/resource/links:
    get:
      tags:
      - ApplicationService
      summary: ListResourceLinks returns the list of all resource deep links
      operationId: ApplicationService_ListResourceLinks
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
      - name: namespace
        in: query
        schema:
          type: string
      - name: resourceName
        in: query
        schema:
          type: string
      - name: version
        in: query
        schema:
          type: string
      - name: group
        in: query
        schema:
          type: string
      - name: kind
        in: query
        schema:
          type: string
      - name: appNamespace
        in: query
        schema:
          type: string
      - name: project
       

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