Virto Commerce VirtoCommerce Platform API

B2B Innovation Platform

OpenAPI Specification

virto-commerce-virtocommerce-platform-api-openapi.yml Raw ↑
openapi: 3.0.4
info:
  title: VirtoCommerce.Cart Catalog VirtoCommerce Platform API
  version: v1
  description: Easily manage your products, categories, variations, and properties
tags:
- name: VirtoCommerce Platform
  description: B2B Innovation Platform
paths:
  /externalsignin:
    get:
      tags:
      - VirtoCommerce Platform
      operationId: ExternalSignIn_SignIn
      parameters:
      - name: AuthenticationType
        in: query
        schema:
          type: string
      - name: ReturnUrl
        in: query
        schema:
          type: string
      - name: StoreId
        in: query
        schema:
          type: string
      - name: OidcUrl
        in: query
        schema:
          type: string
      - name: CallbackUrl
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /externalsignin/signout:
    get:
      tags:
      - VirtoCommerce Platform
      operationId: ExternalSignIn_SignOut
      parameters:
      - name: authenticationType
        in: query
        schema:
          type: string
      - name: returnUrl
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /externalsignin/callback:
    get:
      tags:
      - VirtoCommerce Platform
      operationId: ExternalSignIn_SignInCallback
      parameters:
      - name: returnUrl
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /externalsignin/providers:
    get:
      tags:
      - VirtoCommerce Platform
      operationId: ExternalSignIn_GetExternalLoginProviders
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalSignInProviderInfo'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalSignInProviderInfo'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ExternalSignInProviderInfo'
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/apps/{appId}/manifest:
    get:
      tags:
      - VirtoCommerce Platform
      summary: 'Returns the host app''s plugin manifest.


        In production: cacheable — responds 304 on matching

        `If-None-Match`. The descriptor is built and hashed once at the

        service layer (VirtoCommerce.Platform.Core.Modularity.IAppManifestService) and cached for the

        process lifetime, so 304 cache-hits short-circuit without touching the

        filesystem.

        In Development: `Cache-Control: no-store` is emitted and the 304

        fast path is skipped — every request returns 200 with a freshly built

        body. This makes `yarn build` in a plugin folder visible on the

        next page reload without restarting the platform.'
      operationId: AppManifest_GetManifest
      parameters:
      - name: appId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/AppManifestResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/AppManifestResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/AppManifestResponse'
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/apps/manifest/invalidate:
    post:
      tags:
      - VirtoCommerce Platform
      summary: 'Force-invalidate the manifest cache for every `appId`. The next

        call to `GET /api/apps/{appId}/manifest` will rebuild the

        descriptor from disk, picking up any plugin changes since the last

        build (new module installs, drop-in plugin replacements, plugin

        rebuilds).


        In Development this isn''t normally needed (the service bypasses its

        cache anyway), but the endpoint works in any environment for

        operators who want to refresh without restarting the platform.'
      operationId: AppManifest_InvalidateManifestCache
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - platform:module:manage
      - api_key:
        - platform:module:manage
      - api_key_header:
        - platform:module:manage
      - http-signature:
        - platform:module:manage
      - basic:
        - platform:module:manage
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/platform/apps:
    get:
      tags:
      - VirtoCommerce Platform
      summary: Gets the list of available apps, filtered by user permissions.
      operationId: Apps_GetApps
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AppDescriptor'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AppDescriptor'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AppDescriptor'
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /revoke/token:
    post:
      tags:
      - VirtoCommerce Platform
      operationId: Authorization_RevokeCurrentUserToken
      responses:
        '200':
          description: OK
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /connect/token:
    post:
      tags:
      - VirtoCommerce Platform
      operationId: Authorization_Exchange
      requestBody:
        content:
          application/x-www-form-urlencoded:
            schema:
              required:
              - grant_type
              type: object
              properties:
                grant_type:
                  type: string
                scope:
                  type: string
                username:
                  type: string
                password:
                  type: string
                storeId:
                  type: string
                user_id:
                  type: string
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenIddictResponse'
        '400':
          description: Bad Request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OpenIddictResponse'
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /connect/authorize:
    get:
      tags:
      - VirtoCommerce Platform
      operationId: Authorization_Authorize
      responses:
        '200':
          description: OK
      x-virtocommerce-module-id: VirtoCommerce.Platform
    post:
      tags:
      - VirtoCommerce Platform
      operationId: Authorization_Authorize
      responses:
        '200':
          description: OK
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /connect/userinfo:
    get:
      tags:
      - VirtoCommerce Platform
      operationId: Authorization_Userinfo
      responses:
        '200':
          description: OK
      x-virtocommerce-module-id: VirtoCommerce.Platform
    post:
      tags:
      - VirtoCommerce Platform
      operationId: Authorization_Userinfo
      responses:
        '200':
          description: OK
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /connect/logout:
    get:
      tags:
      - VirtoCommerce Platform
      operationId: Authorization_Logout
      responses:
        '200':
          description: OK
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/changes/force:
    post:
      tags:
      - VirtoCommerce Platform
      summary: Force set changes last modified date
      operationId: ChangeLog_ForceChanges
      parameters:
      - name: Scope
        in: query
        schema:
          type: string
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - cache:reset
      - api_key:
        - cache:reset
      - api_key_header:
        - cache:reset
      - http-signature:
        - cache:reset
      - basic:
        - cache:reset
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/platform-cache/reset:
    post:
      tags:
      - VirtoCommerce Platform
      operationId: ChangeLog_ResetPlatformCache
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - cache:reset
      - api_key:
        - cache:reset
      - api_key_header:
        - cache:reset
      - http-signature:
        - cache:reset
      - basic:
        - cache:reset
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/changes/lastmodifieddate:
    get:
      tags:
      - VirtoCommerce Platform
      summary: 'Get last modified date for given scope

        Used for signal of what something changed and for cache invalidation in external platform clients'
      operationId: ChangeLog_GetLastModifiedDate
      parameters:
      - name: scope
        in: query
        description: ''
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/LastModifiedResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/LastModifiedResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/LastModifiedResponse'
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/changes/changed-entities:
    post:
      tags:
      - VirtoCommerce Platform
      operationId: ChangeLog_GetChangedEntities
      requestBody:
        content:
          application/json-patch+json:
            schema:
              allOf:
              - $ref: '#/components/schemas/ChangedEntitiesRequest'
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/ChangedEntitiesRequest'
          text/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/ChangedEntitiesRequest'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ChangedEntitiesResponse'
            application/json:
              schema:
                $ref: '#/components/schemas/ChangedEntitiesResponse'
            text/json:
              schema:
                $ref: '#/components/schemas/ChangedEntitiesResponse'
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/changes/changed-entities/reset:
    post:
      tags:
      - VirtoCommerce Platform
      operationId: ChangeLog_ResetChangedEntities
      requestBody:
        content:
          application/json-patch+json:
            schema:
              type: array
              items:
                type: string
          application/json:
            schema:
              type: array
              items:
                type: string
          text/json:
            schema:
              type: array
              items:
                type: string
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - cache:reset
      - api_key:
        - cache:reset
      - api_key_header:
        - cache:reset
      - http-signature:
        - cache:reset
      - basic:
        - cache:reset
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/platform/changelog/search:
    post:
      tags:
      - VirtoCommerce Platform
      operationId: ChangeLog_SearchChanges
      requestBody:
        content:
          application/json-patch+json:
            schema:
              allOf:
              - $ref: '#/components/schemas/ChangeLogSearchCriteria'
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/ChangeLogSearchCriteria'
          text/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/ChangeLogSearchCriteria'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OperationLog'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OperationLog'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OperationLog'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2: []
      - api_key: []
      - api_key_header: []
      - http-signature: []
      - basic: []
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/platform/changelog/v2/search:
    post:
      tags:
      - VirtoCommerce Platform
      operationId: ChangeLog_SearchChangesV2
      requestBody:
        content:
          application/json-patch+json:
            schema:
              allOf:
              - $ref: '#/components/schemas/ChangeLogSearchCriteria'
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/ChangeLogSearchCriteria'
          text/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/ChangeLogSearchCriteria'
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/ChangeLogSearchResult'
            application/json:
              schema:
                $ref: '#/components/schemas/ChangeLogSearchResult'
            text/json:
              schema:
                $ref: '#/components/schemas/ChangeLogSearchResult'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2: []
      - api_key: []
      - api_key_header: []
      - http-signature: []
      - basic: []
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/platform/changelog/{type}/changes:
    get:
      tags:
      - VirtoCommerce Platform
      operationId: ChangeLog_SearchTypeChangeHistory
      parameters:
      - name: type
        in: path
        required: true
        schema:
          type: string
      - name: start
        in: query
        schema:
          type: string
          format: date-time
      - name: end
        in: query
        schema:
          type: string
          format: date-time
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OperationLog'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OperationLog'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OperationLog'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2: []
      - api_key: []
      - api_key_header: []
      - http-signature: []
      - basic: []
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/platform/developer-tools:
    get:
      tags:
      - VirtoCommerce Platform
      operationId: DeveloperTools_GetDeveloperTools
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeveloperToolDescriptor'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeveloperToolDescriptor'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DeveloperToolDescriptor'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - platform:developer-tools:access
      - api_key:
        - platform:developer-tools:access
      - api_key_header:
        - platform:developer-tools:access
      - http-signature:
        - platform:developer-tools:access
      - basic:
        - platform:developer-tools:access
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/platform/diagnostics/systeminfo:
    get:
      tags:
      - VirtoCommerce Platform
      operationId: Diagnostics_GetSystemInfo
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                $ref: '#/components/schemas/SystemInfo'
            application/json:
              schema:
                $ref: '#/components/schemas/SystemInfo'
            text/json:
              schema:
                $ref: '#/components/schemas/SystemInfo'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2: []
      - api_key: []
      - api_key_header: []
      - http-signature: []
      - basic: []
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/platform/diagnostics/errors:
    get:
      tags:
      - VirtoCommerce Platform
      summary: Get installed modules with errors
      operationId: Diagnostics_GetModulesErrors
      responses:
        '200':
          description: OK
          content:
            text/plain:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ModuleDescriptor'
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ModuleDescriptor'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ModuleDescriptor'
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/platform/dynamic/types:
    get:
      tags:
      - VirtoCommerce Platform
      summary: Get object types which support dynamic properties
      operationId: DynamicProperties_GetObjectTypes
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  type: string
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - platform:dynamic_properties:read
      - api_key:
        - platform:dynamic_properties:read
      - api_key_header:
        - platform:dynamic_properties:read
      - http-signature:
        - platform:dynamic_properties:read
      - basic:
        - platform:dynamic_properties:read
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/platform/dynamic/properties:
    get:
      tags:
      - VirtoCommerce Platform
      operationId: DynamicProperties_GetAllDynamicProperties
      parameters:
      - name: id
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DynamicProperty'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - platform:dynamic_properties:read
      - api_key:
        - platform:dynamic_properties:read
      - api_key_header:
        - platform:dynamic_properties:read
      - http-signature:
        - platform:dynamic_properties:read
      - basic:
        - platform:dynamic_properties:read
      x-virtocommerce-module-id: VirtoCommerce.Platform
    post:
      tags:
      - VirtoCommerce Platform
      summary: Add new dynamic property
      operationId: DynamicProperties_CreatePropertyAsync
      requestBody:
        content:
          application/json-patch+json:
            schema:
              allOf:
              - $ref: '#/components/schemas/DynamicProperty'
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/DynamicProperty'
          text/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/DynamicProperty'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DynamicProperty'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:create
      - api_key:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:create
      - api_key_header:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:create
      - http-signature:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:create
      - basic:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:create
      x-virtocommerce-module-id: VirtoCommerce.Platform
    put:
      tags:
      - VirtoCommerce Platform
      summary: Update existing dynamic property
      operationId: DynamicProperties_UpdatePropertyAsync
      requestBody:
        content:
          application/json-patch+json:
            schema:
              allOf:
              - $ref: '#/components/schemas/DynamicProperty'
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/DynamicProperty'
          text/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/DynamicProperty'
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:update
      - api_key:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:update
      - api_key_header:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:update
      - http-signature:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:update
      - basic:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:update
      x-virtocommerce-module-id: VirtoCommerce.Platform
    delete:
      tags:
      - VirtoCommerce Platform
      summary: Delete dynamic property
      operationId: DynamicProperties_DeletePropertyAsync
      parameters:
      - name: propertyIds
        in: query
        schema:
          type: array
          items:
            type: string
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:delete
      - api_key:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:delete
      - api_key_header:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:delete
      - http-signature:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:delete
      - basic:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:delete
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/platform/dynamic/properties/search:
    post:
      tags:
      - VirtoCommerce Platform
      summary: Get dynamic properties registered for object type
      operationId: DynamicProperties_SearchDynamicProperties
      requestBody:
        content:
          application/json-patch+json:
            schema:
              allOf:
              - $ref: '#/components/schemas/DynamicPropertySearchCriteria'
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/DynamicPropertySearchCriteria'
          text/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/DynamicPropertySearchCriteria'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DynamicPropertySearchResult'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - platform:dynamic_properties:read
      - api_key:
        - platform:dynamic_properties:read
      - api_key_header:
        - platform:dynamic_properties:read
      - http-signature:
        - platform:dynamic_properties:read
      - basic:
        - platform:dynamic_properties:read
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/platform/dynamic:
    post:
      tags:
      - VirtoCommerce Platform
      summary: Does nothing. Just a way to expose DynamicObjectProperty thru Swagger.
      operationId: DynamicProperties_ExposeDynamicObjectProperty
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DynamicObjectProperty'
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - platform:dynamic_properties:read
      - api_key:
        - platform:dynamic_properties:read
      - api_key_header:
        - platform:dynamic_properties:read
      - http-signature:
        - platform:dynamic_properties:read
      - basic:
        - platform:dynamic_properties:read
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/platform/dynamic/dictionaryitems:
    get:
      tags:
      - VirtoCommerce Platform
      operationId: DynamicProperties_GetAllDictionaryItems
      parameters:
      - name: propertyId
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DynamicPropertyDictionaryItem'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - platform:dynamic_properties:read
      - api_key:
        - platform:dynamic_properties:read
      - api_key_header:
        - platform:dynamic_properties:read
      - http-signature:
        - platform:dynamic_properties:read
      - basic:
        - platform:dynamic_properties:read
      x-virtocommerce-module-id: VirtoCommerce.Platform
    post:
      tags:
      - VirtoCommerce Platform
      summary: Add or update dictionary items
      description: Fill item ID to update existing item or leave it empty to create a new item.
      operationId: DynamicProperties_SaveDictionaryItemsAsync
      requestBody:
        content:
          application/json-patch+json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/DynamicPropertyDictionaryItem'
          application/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/DynamicPropertyDictionaryItem'
          text/json:
            schema:
              type: array
              items:
                $ref: '#/components/schemas/DynamicPropertyDictionaryItem'
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:update
      - api_key:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:update
      - api_key_header:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:update
      - http-signature:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:update
      - basic:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:update
      x-virtocommerce-module-id: VirtoCommerce.Platform
    delete:
      tags:
      - VirtoCommerce Platform
      summary: Delete dictionary items
      operationId: DynamicProperties_DeleteDictionaryItemAsync
      parameters:
      - name: ids
        in: query
        description: IDs of dictionary items to delete.
        schema:
          type: array
          items:
            type: string
      responses:
        '204':
          description: No Content
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:update
      - api_key:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:update
      - api_key_header:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:update
      - http-signature:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:update
      - basic:
        - platform:dynamic_properties:read
        - platform:dynamic_properties:update
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/platform/dynamic/dictionaryitems/search:
    post:
      tags:
      - VirtoCommerce Platform
      summary: Get dictionary items
      operationId: DynamicProperties_SearchDictionaryItems
      requestBody:
        content:
          application/json-patch+json:
            schema:
              allOf:
              - $ref: '#/components/schemas/DynamicPropertyDictionaryItemSearchCriteria'
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/DynamicPropertyDictionaryItemSearchCriteria'
          text/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/DynamicPropertyDictionaryItemSearchCriteria'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DynamicPropertyDictionaryItemSearchResult'
        '401':
          description: Unauthorized
        '403':
          description: Forbidden
      security:
      - oauth2:
        - platform:dynamic_properties:read
      - api_key:
        - platform:dynamic_properties:read
      - api_key_header:
        - platform:dynamic_properties:read
      - http-signature:
        - platform:dynamic_properties:read
      - basic:
        - platform:dynamic_properties:read
      x-virtocommerce-module-id: VirtoCommerce.Platform
  /api/platform/jobs/{id}:
    get:
      tags:
      - VirtoCommerce Platform
      summary: Get background job status
      operationId: Jobs_GetStatus
      parameters:
      - name: id
        in:

# --- truncated at 32 KB (189 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/virto-commerce/refs/heads/main/openapi/virto-commerce-virtocommerce-platform-api-openapi.yml