PropelAuth · Arazzo Workflow

PropelAuth Issue Magic Link For New User

Version 1.0.0

Create a new user, then mint a one-time magic link to sign them in.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AuthenticationIdentityB2BMulti-TenancyAuthorizationRBACSSOSCIMMCPAPIKeysArazzoWorkflows

Provider

propelauth

Workflows

issue-magic-link-for-new-user
Create a user, then generate a one-time magic link for that user.
Creates a new user and mints a magic link for the same email, returning the sign-in URL.
2 steps inputs: backendApiKey, email, redirectToUrl outputs: magicLinkUrl, userId
1
createUser
Create the new user the magic link will sign in.
2
createMagicLink
Generate a one-time magic link for the user's email.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: PropelAuth Issue Magic Link For New User
  summary: Create a new user, then mint a one-time magic link to sign them in.
  description: >-
    A passwordless onboarding flow. The workflow creates a new end user and then
    generates a one-time magic link bound to that user's email, returning a URL
    you can deliver to sign the user in or finish their signup. Each step inlines
    its request, including the Backend Integration API key as a bearer token, so
    the flow reads and runs without the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: magicLinksApi
  url: ../openapi/propelauth-magic-links-api-openapi.yml
  type: openapi
- name: usersApi
  url: ../openapi/propelauth-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: issue-magic-link-for-new-user
  summary: Create a user, then generate a one-time magic link for that user.
  description: >-
    Creates a new user and mints a magic link for the same email, returning the
    sign-in URL.
  inputs:
    type: object
    required:
    - backendApiKey
    - email
    properties:
      backendApiKey:
        type: string
        description: PropelAuth Backend Integration API key presented as a bearer token.
      email:
        type: string
        description: Email address for the new user and the magic link.
      redirectToUrl:
        type: string
        description: Optional URL to redirect to after the magic link is used.
  steps:
  - stepId: createUser
    description: Create the new user the magic link will sign in.
    operationId: createUser
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.backendApiKey"
    requestBody:
      contentType: application/json
      payload:
        email: $inputs.email
        email_confirmed: true
        send_email_to_confirm_email_address: false
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      userId: $response.body#/user_id
  - stepId: createMagicLink
    description: Generate a one-time magic link for the user's email.
    operationId: createMagicLink
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.backendApiKey"
    requestBody:
      contentType: application/json
      payload:
        email: $inputs.email
        redirect_to_url: $inputs.redirectToUrl
        create_new_user_if_one_doesnt_exist: false
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      magicLinkUrl: $response.body#/url
  outputs:
    userId: $steps.createUser.outputs.userId
    magicLinkUrl: $steps.createMagicLink.outputs.magicLinkUrl

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/propelauth-issue-magic-link-for-new-user-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.