JFrog Artifactory · Arazzo Workflow

Artifactory Create User and Verify Membership

Version 1.0.0

Create a group, create a user in that group, then read the user back to verify.

1 workflow 1 source API 1 provider
View Spec View on GitHub ArtifactsDevOpsCI/CDdocker-registryMavenPackage ManagementRepositoryArazzoWorkflows

Provider

artifactory

Workflows

create-user-and-verify-membership
Create a group and a user in it, then verify the user's groups.
Creates a group, creates a user belonging to that group, and reads the user details to verify the group membership.
3 steps inputs: accessToken, email, groupName, password, username outputs: groups, userStatus
1
createGroup
Create the group the user will belong to.
2
createUser
Create the user and assign it to the group.
3
verifyUser
Read the user details back to confirm the group membership was applied.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Artifactory Create User and Verify Membership
  summary: Create a group, create a user in that group, then read the user back to verify.
  description: >-
    A user-provisioning-with-verification flow for JFrog Artifactory. The
    workflow creates a group, creates a user assigned to that group, and then
    reads the user details back to confirm the group membership was applied.
    Every step spells out its request inline so the flow can be read and executed
    without opening the underlying OpenAPI description.
  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: artifactory-security-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: securityApi
  url: ../openapi/artifactory-security-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-user-and-verify-membership
  summary: Create a group and a user in it, then verify the user's groups.
  description: >-
    Creates a group, creates a user belonging to that group, and reads the user
    details to verify the group membership.
  inputs:
    type: object
    required:
    - accessToken
    - groupName
    - username
    - email
    - password
    properties:
      accessToken:
        type: string
        description: Bearer access token for authenticating with Artifactory.
      groupName:
        type: string
        description: The group to create and assign the user to.
      username:
        type: string
        description: The username to create.
      email:
        type: string
        description: The email address for the new user.
      password:
        type: string
        description: The initial password for the new user.
  steps:
  - stepId: createGroup
    description: Create the group the user will belong to.
    operationId: createOrReplaceGroup
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: groupName
      in: path
      value: $inputs.groupName
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.groupName
        description: Group created for membership verification.
        autoJoin: false
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      groupStatus: $statusCode
  - stepId: createUser
    description: Create the user and assign it to the group.
    operationId: createOrReplaceUser
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: username
      in: path
      value: $inputs.username
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.username
        email: $inputs.email
        password: $inputs.password
        admin: false
        profileUpdatable: true
        groups:
        - $inputs.groupName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      userStatus: $statusCode
  - stepId: verifyUser
    description: >-
      Read the user details back to confirm the group membership was applied.
    operationId: getUser
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.accessToken
    - name: username
      in: path
      value: $inputs.username
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      groups: $response.body#/groups
      email: $response.body#/email
  outputs:
    userStatus: $steps.createUser.outputs.userStatus
    groups: $steps.verifyUser.outputs.groups

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/artifactory-create-user-verify-membership-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.