Kinde · Arazzo Workflow

Kinde Register Application with Connection

Version 1.0.0

Create an application, set its callback URLs, create a social connection, and enable it.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub AuthenticationAuthorizationCustomer IdentityIdentity ManagementOpenID ConnectSingle Sign-OnMulti-Factor AuthenticationRole-Based Access ControlFeature FlagsBillingB2BSoftware-as-a-ServiceDeveloper PlatformArazzoWorkflows

Provider

kinde

Workflows

register-application-with-connection
Create an app, set callbacks, create a connection, and enable it for the app.
Creates an application, adds its redirect callback URLs, creates an auth connection, and enables the connection on the application.
4 steps inputs: appName, appType, connectionDisplayName, connectionName, connectionStrategy, redirectUrls outputs: applicationId, clientId, connectionId
1
createApplication
Create the application. Returns the application id and client id used by the following steps.
2
addCallbackUrls
Register the application's redirect callback URLs so the auth flow can return to the application.
3
createConnection
Create the auth connection (identity provider) that the application will authenticate against. Returns the connection id.
4
enableConnection
Enable the new connection for the application so end users can sign in with it.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Kinde Register Application with Connection
  summary: Create an application, set its callback URLs, create a social connection, and enable it.
  description: >-
    Bootstraps a new client application end to end. The workflow creates the
    application, registers its redirect callback URLs, creates an auth
    connection (e.g. a social identity provider), and enables that connection
    for the new application. Every step inlines its request so the flow can be
    read and executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: applicationsApi
  url: ../openapi/kinde-applications-api-openapi.yml
  type: openapi
- name: callbacksApi
  url: ../openapi/kinde-callbacks-api-openapi.yml
  type: openapi
- name: connectionsApi
  url: ../openapi/kinde-connections-api-openapi.yml
  type: openapi
workflows:
- workflowId: register-application-with-connection
  summary: Create an app, set callbacks, create a connection, and enable it for the app.
  description: >-
    Creates an application, adds its redirect callback URLs, creates an auth
    connection, and enables the connection on the application.
  inputs:
    type: object
    required:
    - appName
    - appType
    - redirectUrls
    - connectionName
    - connectionDisplayName
    - connectionStrategy
    properties:
      appName:
        type: string
        description: The application's name.
      appType:
        type: string
        description: The application type - one of reg, spa, m2m, device.
      redirectUrls:
        type: array
        description: Redirect callback URLs to register for the application.
        items:
          type: string
      connectionName:
        type: string
        description: The internal name of the connection.
      connectionDisplayName:
        type: string
        description: The public facing name of the connection.
      connectionStrategy:
        type: string
        description: The identity provider strategy (e.g. oauth2:google).
  steps:
  - stepId: createApplication
    description: >-
      Create the application. Returns the application id and client id used by
      the following steps.
    operationId: createApplication
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.appName
        type: $inputs.appType
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      applicationId: $response.body#/application/id
      clientId: $response.body#/application/client_id
  - stepId: addCallbackUrls
    description: >-
      Register the application's redirect callback URLs so the auth flow can
      return to the application.
    operationId: addRedirectCallbackURLs
    parameters:
    - name: app_id
      in: path
      value: $steps.createApplication.outputs.applicationId
    requestBody:
      contentType: application/json
      payload:
        urls: $inputs.redirectUrls
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      callbackResult: $response.body#/code
  - stepId: createConnection
    description: >-
      Create the auth connection (identity provider) that the application will
      authenticate against. Returns the connection id.
    operationId: CreateConnection
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.connectionName
        display_name: $inputs.connectionDisplayName
        strategy: $inputs.connectionStrategy
        enabled_applications:
        - $steps.createApplication.outputs.clientId
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      connectionId: $response.body#/connection/id
  - stepId: enableConnection
    description: >-
      Enable the new connection for the application so end users can sign in
      with it.
    operationId: EnableConnection
    parameters:
    - name: application_id
      in: path
      value: $steps.createApplication.outputs.applicationId
    - name: connection_id
      in: path
      value: $steps.createConnection.outputs.connectionId
    successCriteria:
    - condition: $statusCode == 200
  outputs:
    applicationId: $steps.createApplication.outputs.applicationId
    clientId: $steps.createApplication.outputs.clientId
    connectionId: $steps.createConnection.outputs.connectionId

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/kinde-register-application-with-connection-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.