Cross-Provider Workflow

Okta User Create to App Assignment to Slack Notify

Version 1.0.0

Create an Okta user, assign them to an application, then notify Slack.

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

Providers Orchestrated

okta slack

Workflows

create-user-assign-app
Create an Okta user, assign to an app, and notify Slack.
Creates an Okta user, assigns the new user to an application by id, and posts a Slack message announcing the access grant.
3 steps inputs: appId, email, firstName, lastName, login, slackChannel outputs: assignmentId, messageTs, oktaUserId
1
create-user
$sourceDescriptions.oktaApi.createUser
Create the new user in Okta.
2
assign-app
$sourceDescriptions.oktaApi.assignUserToApplication
Assign the new user to the target application.
3
notify-slack
$sourceDescriptions.slackApi.postChatPostmessage
Announce the new access grant in Slack.

Source API Descriptions

Arazzo Workflow Specification

id-okta-create-user-assign-app-slack-notify.yml Raw ↑
arazzo: 1.0.1
info:
  title: Okta User Create to App Assignment to Slack Notify
  summary: Create an Okta user, assign them to an application, then notify Slack.
  description: >-
    An access-provisioning workflow that creates a new user in Okta, assigns
    that user to a target application so they gain SSO access, and posts a Slack
    notification confirming the new access grant. Chains the created Okta user
    id into the application assignment request.
  version: 1.0.0
sourceDescriptions:
  - name: oktaApi
    url: https://raw.githubusercontent.com/api-evangelist/okta/refs/heads/main/openapi/okta-group-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: create-user-assign-app
    summary: Create an Okta user, assign to an app, and notify Slack.
    description: >-
      Creates an Okta user, assigns the new user to an application by id, and
      posts a Slack message announcing the access grant.
    inputs:
      type: object
      properties:
        firstName:
          type: string
        lastName:
          type: string
        email:
          type: string
        login:
          type: string
        appId:
          type: string
        slackChannel:
          type: string
    steps:
      - stepId: create-user
        description: Create the new user in Okta.
        operationId: $sourceDescriptions.oktaApi.createUser
        requestBody:
          contentType: application/json
          payload:
            profile:
              firstName: $inputs.firstName
              lastName: $inputs.lastName
              email: $inputs.email
              login: $inputs.login
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          oktaUserId: $response.body#/id
          userStatus: $response.body#/status
      - stepId: assign-app
        description: Assign the new user to the target application.
        operationId: $sourceDescriptions.oktaApi.assignUserToApplication
        parameters:
          - name: appId
            in: path
            value: $inputs.appId
        requestBody:
          contentType: application/json
          payload:
            id: $steps.create-user.outputs.oktaUserId
            scope: USER
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          assignmentId: $response.body#/id
      - stepId: notify-slack
        description: Announce the new access grant in Slack.
        operationId: $sourceDescriptions.slackApi.postChatPostmessage
        requestBody:
          contentType: application/json
          payload:
            channel: $inputs.slackChannel
            text: Assigned $inputs.email to application $inputs.appId in Okta.
        successCriteria:
          - condition: $statusCode == 200
        outputs:
          messageTs: $response.body#/ts
    outputs:
      oktaUserId: $steps.create-user.outputs.oktaUserId
      assignmentId: $steps.assign-app.outputs.assignmentId
      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-okta-create-user-assign-app-slack-notify"
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.