Azure Container Apps Authentication API

Manage container app authentication

Operations 1

GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/authConfigs Azure Container Apps List Auth Configs #

Documentation

Specifications

Schemas & Data

Other Resources

🔗
Pricing
https://azure.microsoft.com/en-us/pricing/details/container-apps/
🔗
APIsJSON
https://raw.githubusercontent.com/api-evangelist/azure-container-apps/refs/heads/main/apis.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/azure-container-apps/refs/heads/main/arazzo/azure-container-apps-activate-latest-revision-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/azure-container-apps/refs/heads/main/arazzo/azure-container-apps-audit-app-security-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/azure-container-apps/refs/heads/main/arazzo/azure-container-apps-decommission-app-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/azure-container-apps/refs/heads/main/arazzo/azure-container-apps-deploy-app-into-new-environment-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/azure-container-apps/refs/heads/main/arazzo/azure-container-apps-enable-dapr-sidecar-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/azure-container-apps/refs/heads/main/arazzo/azure-container-apps-provision-and-run-job-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/azure-container-apps/refs/heads/main/arazzo/azure-container-apps-provision-container-app-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/azure-container-apps/refs/heads/main/arazzo/azure-container-apps-provision-managed-environment-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/azure-container-apps/refs/heads/main/arazzo/azure-container-apps-restart-active-revision-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/azure-container-apps/refs/heads/main/arazzo/azure-container-apps-rotate-and-verify-secrets-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/azure-container-apps/refs/heads/main/arazzo/azure-container-apps-run-existing-job-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/azure-container-apps/refs/heads/main/arazzo/azure-container-apps-shift-revision-traffic-workflow.yml
🔗
Arazzo
https://raw.githubusercontent.com/api-evangelist/azure-container-apps/refs/heads/main/arazzo/azure-container-apps-update-app-and-list-revisions-workflow.yml

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/azure-container-apps-authentication-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

azure-container-apps-authentication-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Azure Container Apps Authentication API
  description: Azure Container Apps allows you to run microservices and containerized applications on a serverless platform. The API provides operations for managing container apps, managed environments, revisions, jobs, and related resources through Azure Resource Manager.
  version: '2023-05-01'
  contact:
    name: Microsoft Azure
    url: https://azure.microsoft.com/en-us/products/container-apps
servers:
- url: https://management.azure.com
  description: Azure Resource Manager endpoint
security:
- azure_auth:
  - user_impersonation
tags:
- name: Authentication
  description: Manage container app authentication
paths:
  ? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/containerApps/{containerAppName}/authConfigs
  : get:
      operationId: ContainerAppsAuthConfigs_ListByContainerApp
      summary: Azure Container Apps List Auth Configs
      description: Get the Container App AuthConfigs in a given Container App.
      tags:
      - Authentication
      parameters:
      - $ref: '#/components/parameters/SubscriptionId'
      - $ref: '#/components/parameters/ResourceGroupName'
      - name: containerAppName
        in: path
        required: true
        schema:
          type: string
        example: my-container-app
      - $ref: '#/components/parameters/ApiVersion'
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  value:
                    type: array
                    items:
                      $ref: '#/components/schemas/AuthConfig'
                  nextLink:
                    type: string
              examples:
                ContainerAppsAuthConfigs_ListByContainerApp200Example:
                  summary: Default ContainerAppsAuthConfigs_ListByContainerApp 200 response
                  x-microcks-default: true
                  value:
                    id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/my-resource-group/providers/Microsoft.App/containerApps/my-container-app
                    name: my-container-app
                    type: Microsoft.App/containerApps
                    location: eastus
                    properties:
                      provisioningState: Succeeded
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    AuthConfig:
      type: object
      properties:
        id:
          type: string
          readOnly: true
        name:
          type: string
          readOnly: true
        type:
          type: string
          readOnly: true
        properties:
          type: object
          properties:
            platform:
              type: object
              properties:
                enabled:
                  type: boolean
                runtimeVersion:
                  type: string
            globalValidation:
              type: object
              properties:
                unauthenticatedClientAction:
                  type: string
                  enum:
                  - RedirectToLoginPage
                  - AllowAnonymous
                  - Return401
                  - Return403
                redirectToProvider:
                  type: string
            identityProviders:
              type: object
              properties:
                azureActiveDirectory:
                  type: object
                  properties:
                    enabled:
                      type: boolean
                    registration:
                      type: object
                      properties:
                        openIdIssuer:
                          type: string
                        clientId:
                          type: string
                        clientSecretSettingName:
                          type: string
  parameters:
    ApiVersion:
      name: api-version
      in: query
      required: true
      description: Client API version.
      schema:
        type: string
        default: '2023-05-01'
    SubscriptionId:
      name: subscriptionId
      in: path
      required: true
      description: The Azure subscription ID.
      schema:
        type: string
    ResourceGroupName:
      name: resourceGroupName
      in: path
      required: true
      description: The name of the resource group.
      schema:
        type: string
  securitySchemes:
    azure_auth:
      type: oauth2
      flows:
        implicit:
          authorizationUrl: https://login.microsoftonline.com/common/oauth2/authorize
          scopes:
            user_impersonation: Impersonate your user account