Microsoft Active Directory · Arazzo Workflow

Active Directory Update Application Redirect URIs

Version 1.0.0

Resolve an application by name, read it, then patch its web redirect URIs and description.

1 workflow 1 source API 1 provider
View Spec View on GitHub Active DirectoryAuthenticationAuthorizationDirectory ServicesIdentity ManagementMicrosoft EntraZero TrustArazzoWorkflows

Provider

active-directory

Workflows

update-application-redirect-uris
Find an application by name and update its web redirect URIs.
Searches the applications collection by display name, reads the matched application, and patches its web.redirectUris and description.
3 steps inputs: description, displayName, redirectUri outputs: appId, applicationId
1
findApplication
Resolve the application by display name, returning at most one match.
2
getApplication
Read the matched application to capture its current appId.
3
updateApplication
Patch the application's web redirect URIs and description.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Active Directory Update Application Redirect URIs
  summary: Resolve an application by name, read it, then patch its web redirect URIs and description.
  description: >-
    An app configuration pattern. The workflow resolves an application
    registration by display name, reads its current state, and patches the web
    platform redirect URIs along with the application description — keeping
    OAuth2 reply URLs current as deployment environments change. Each step
    inlines its request so the flow runs without the OpenAPI source.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-620.20
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-620.20
      capability_name: Identity & Access Management
      spec: active-directory-applications-api-openapi.yml
      confidence: 0.75
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: applicationsApi
  url: ../openapi/active-directory-applications-api-openapi.yml
  type: openapi
workflows:
- workflowId: update-application-redirect-uris
  summary: Find an application by name and update its web redirect URIs.
  description: >-
    Searches the applications collection by display name, reads the matched
    application, and patches its web.redirectUris and description.
  inputs:
    type: object
    required:
    - displayName
    - redirectUri
    - description
    properties:
      displayName:
        type: string
        description: Display name of the application to update.
      redirectUri:
        type: string
        description: The web redirect URI to set on the application.
      description:
        type: string
        description: The new description to set on the application.
  steps:
  - stepId: findApplication
    description: Resolve the application by display name, returning at most one match.
    operationId: list-applications
    parameters:
    - name: $filter
      in: query
      value: "displayName eq '$inputs.displayName'"
    - name: $top
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      applicationId: $response.body#/value/0/id
    onSuccess:
    - name: applicationFound
      type: goto
      stepId: getApplication
      criteria:
      - context: $response.body
        condition: $.value.length > 0
        type: jsonpath
    - name: applicationMissing
      type: end
      criteria:
      - context: $response.body
        condition: $.value.length == 0
        type: jsonpath
  - stepId: getApplication
    description: Read the matched application to capture its current appId.
    operationId: get-application
    parameters:
    - name: applicationId
      in: path
      value: $steps.findApplication.outputs.applicationId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      appId: $response.body#/appId
  - stepId: updateApplication
    description: Patch the application's web redirect URIs and description.
    operationId: update-application
    parameters:
    - name: applicationId
      in: path
      value: $steps.findApplication.outputs.applicationId
    requestBody:
      contentType: application/json
      payload:
        description: $inputs.description
        web:
          redirectUris:
          - $inputs.redirectUri
    successCriteria:
    - condition: $statusCode == 204
    outputs:
      updatedApplicationId: $steps.findApplication.outputs.applicationId
  outputs:
    applicationId: $steps.findApplication.outputs.applicationId
    appId: $steps.getApplication.outputs.appId

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/active-directory-update-application-redirect-uris-workflow"
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.