PropelAuth · Arazzo Workflow

PropelAuth Create And Update User

Version 1.0.0

Create a user, fetch it back, then enrich the profile with a follow-up update.

1 workflow 1 source API 1 provider
View Spec View on GitHub AuthenticationIdentityB2BMulti-TenancyAuthorizationRBACSSOSCIMMCPAPIKeysArazzoWorkflows

Provider

propelauth

Workflows

create-and-update-user
Create a user, fetch it back by ID, then update its profile fields.
Creates a user, reads the record back by user ID to confirm it persisted, and patches the user's name and properties in a follow-up update.
3 steps inputs: backendApiKey, email, firstName, lastName outputs: email, userId
1
createUser
Create the user from the supplied email.
2
fetchUser
Fetch the newly created user by ID to confirm it persisted.
3
updateUser
Patch the user's display name fields.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: PropelAuth Create And Update User
  summary: Create a user, fetch it back, then enrich the profile with a follow-up update.
  description: >-
    A straightforward create-read-update flow. The workflow creates a new user,
    fetches the freshly created record by its user ID to confirm it persisted,
    and then patches the profile with the supplied display name and metadata.
    Each step inlines its request, including the Backend Integration API key as a
    bearer token.
  version: 1.0.0
sourceDescriptions:
- name: usersApi
  url: ../openapi/propelauth-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-and-update-user
  summary: Create a user, fetch it back by ID, then update its profile fields.
  description: >-
    Creates a user, reads the record back by user ID to confirm it persisted, and
    patches the user's name and properties in a follow-up update.
  inputs:
    type: object
    required:
    - backendApiKey
    - email
    - firstName
    - lastName
    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.
      firstName:
        type: string
        description: First name to set on the user during the update step.
      lastName:
        type: string
        description: Last name to set on the user during the update step.
  steps:
  - stepId: createUser
    description: Create the user from the supplied email.
    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: fetchUser
    description: Fetch the newly created user by ID to confirm it persisted.
    operationId: fetchUserById
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.backendApiKey"
    - name: userId
      in: path
      value: $steps.createUser.outputs.userId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      email: $response.body#/email
  - stepId: updateUser
    description: Patch the user's display name fields.
    operationId: updateUser
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.backendApiKey"
    - name: userId
      in: path
      value: $steps.createUser.outputs.userId
    requestBody:
      contentType: application/json
      payload:
        first_name: $inputs.firstName
        last_name: $inputs.lastName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      updatedStatus: $statusCode
  outputs:
    userId: $steps.createUser.outputs.userId
    email: $steps.fetchUser.outputs.email

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-create-and-update-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.