Elastic Stack (ELK Stack) Platform Configuration Templates API

The PlatformConfigurationTemplates API from Elastic Stack (ELK Stack) — 1 operation(s) for platformconfigurationtemplates.

Operations 1

GET /platform/configuration/templates/deployments/global Get all templates cross region. #

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/elk-stack-platformconfigurationtemplates-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

elk-stack-platformconfigurationtemplates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: '1'
  title: Elastic Cloud Enterprise Platform Configuration Templates API
  termsOfService: ''
servers:
- url: https://{{hostname}}/api/v1
security:
- basicAuth: []
- apiKey: []
tags:
- name: PlatformConfigurationTemplates
paths:
  /platform/configuration/templates/deployments/global:
    get:
      tags:
      - PlatformConfigurationTemplates
      summary: Get all templates cross region.
      description: Global deployment template endpoint which fetches the deployment templates across all region services.
      operationId: get-global-deployment-templates
      responses:
        '200':
          description: The deployment templates were returned successfully.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GlobalDeploymentTemplateInfo'
        '204':
          description: There are no deployment templates available.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EmptyResponse'
      x-doc:
        tag: Templates - Deployments - Global
components:
  schemas:
    KibanaDeeplink:
      type: object
      required:
      - semver
      - uri
      properties:
        semver:
          type: string
          description: Semver condition when to apply the URI.
        uri:
          type: string
          description: URI to which the user should be directed.
      description: Embedded object that contains information for linking into a specific Kibana page configured via the template.
    MetadataItem:
      type: object
      required:
      - key
      - value
      properties:
        key:
          type: string
          description: The metadata field name
        value:
          type: string
          description: The metadata value
      description: The key-value pair.
    GlobalDeploymentTemplateRegion:
      type: object
      required:
      - deployment_template_id
      - region_id
      - versions
      properties:
        region_id:
          type: string
          description: The region identifier.
        deployment_template_id:
          type: string
          description: The (region-specific) ID of the deployment template.
        versions:
          type: array
          description: Versions supported in this region.
          items:
            type: string
        kibana_deeplink:
          type: array
          description: The Kibana Deeplink for this type of deployment.
          items:
            $ref: '#/components/schemas/KibanaDeeplink'
      description: Region-specific details about a template.
    EmptyResponse:
      type: object
    GlobalDeploymentTemplateInfo:
      type: object
      required:
      - description
      - name
      - order
      - regions
      properties:
        template_category_id:
          type: string
          description: Provider agnostic template identifier.
        name:
          type: string
          description: Long name of the Template
        description:
          type: string
          description: An optional description for the template.
        order:
          type: integer
          format: int32
          description: The order in which the templates should be displayed in the front-end.
        metadata:
          type: array
          description: Optional arbitrary metadata to associate with this template.
          items:
            $ref: '#/components/schemas/MetadataItem'
        regions:
          type: array
          description: List of regions this template is used in.
          items:
            $ref: '#/components/schemas/GlobalDeploymentTemplateRegion'
      description: The top-level model for global (regionless) templates.
  securitySchemes:
    apiKey:
      type: apiKey
      name: Authorization
      in: header
    basicAuth:
      type: http
      scheme: basic
x-elastic:
  curl:
    auth: '-H "Authorization: ApiKey $ECE_API_KEY"'