Cross-Provider Workflow

Entra App Registration with Credential and Slack Notify

Version 1.0.0

Register a Microsoft Entra application, add a client secret, then notify Slack.

1 workflow 2 source APIs 2 providers
View Spec View on GitHub ArazzoWorkflowsCross-Provider

Providers Orchestrated

microsoft-entra slack

Workflows

register-app-add-credential
Register an Entra app, add a secret, and notify Slack.
Registers an application in Microsoft Entra ID, adds a password credential to the application, and posts a Slack message with the new app id.
3 steps inputs: displayName, secretDisplayName, slackChannel outputs: appId, messageTs, secretKeyId
1
register-app
$sourceDescriptions.entraApi.createApplication
Register the new application in Microsoft Entra ID.
2
add-credential
$sourceDescriptions.entraApi.addApplicationPassword
Add a client secret to the new application.
3
notify-slack
$sourceDescriptions.slackApi.postChatPostmessage
Notify the platform team in Slack.

Source API Descriptions

Arazzo Workflow Specification

id-entra-app-register-credential-slack.yml Raw ↑
arazzo: 1.0.1
info:
  title: Entra App Registration with Credential and Slack Notify
  summary: Register a Microsoft Entra application, add a client secret, then notify Slack.
  description: >-
    A service-identity provisioning workflow that registers a new application in
    Microsoft Entra ID, adds a client secret (password credential) to the app so
    it can authenticate, and posts a Slack notification to the platform team.
    Chains the created application id into the credential request.
  version: 1.0.0
sourceDescriptions:
  - name: entraApi
    url: https://raw.githubusercontent.com/api-evangelist/microsoft-entra/refs/heads/main/openapi/microsoft-entra-applications-api-openapi.yml
    type: openapi
  - name: slackApi
    url: https://raw.githubusercontent.com/api-evangelist/slack/refs/heads/main/openapi/slack-chat-api-openapi.yml
    type: openapi
workflows:
  - workflowId: register-app-add-credential
    summary: Register an Entra app, add a secret, and notify Slack.
    description: >-
      Registers an application in Microsoft Entra ID, adds a password credential
      to the application, and posts a Slack message with the new app id.
    inputs:
      type: object
      properties:
        displayName:
          type: string
        secretDisplayName:
          type: string
        slackChannel:
          type: string
    steps:
      - stepId: register-app
        description: Register the new application in Microsoft Entra ID.
        operationId: $sourceDescriptions.entraApi.createApplication
        requestBody:
          contentType: application/json
          payload:
            displayName: $inputs.displayName
            signInAudience: AzureADMyOrg
        successCriteria:
          - condition: $statusCode == 201
        outputs:
          appObjectId: $response.body#/id
          appId: $response.body#/appId
      - stepId: add-credential
        description: Add a client secret to the new application.
        operationId: $sourceDescriptions.entraApi.addApplicationPassword
        parameters:
          - name: application-id
            in: path
            value: $steps.register-app.outputs.appObjectId
        requestBody:
          contentType: application/json
          payload:
            passwordCredential:
              displayName: $inputs.secretDisplayName
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          secretKeyId: $response.body#/keyId
      - stepId: notify-slack
        description: Notify the platform team in Slack.
        operationId: $sourceDescriptions.slackApi.postChatPostmessage
        requestBody:
          contentType: application/json
          payload:
            channel: $inputs.slackChannel
            text: Registered Entra application $inputs.displayName and issued a client secret.
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          messageTs: $response.body#/ts
    outputs:
      appId: $steps.register-app.outputs.appId
      secretKeyId: $steps.add-credential.outputs.secretKeyId
      messageTs: $steps.notify-slack.outputs.messageTs

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/id-entra-app-register-credential-slack"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.