UiPath · Arazzo Workflow

UiPath Provision a Credential Asset

Version 1.0.0

Create a credential asset and confirm it by reading it back.

1 workflow 1 source API 1 provider
View Spec View on GitHub AutomationRobotic Process AutomationRPAArtificial IntelligenceDocument ProcessingEnterprise AutomationOrchestrationTestingArazzoWorkflows

Provider

uipath

Workflows

provision-credential-asset
Create a Credential asset then read it back to confirm.
Creates a Credential asset with a username and password, then retrieves it by ID to confirm its definition.
2 steps inputs: assetName, description, folderId, password, username outputs: assetId, confirmedType, confirmedUsername
1
createCredential
Create a Credential asset in the folder storing the supplied username and password pair.
2
confirmCredential
Read the credential asset back by its ID to confirm its name, type, and username persisted. The password is write-only and is not returned.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: UiPath Provision a Credential Asset
  summary: Create a credential asset and confirm it by reading it back.
  description: >-
    A secrets-provisioning pattern for Orchestrator. The workflow creates a
    Credential asset that stores a username and password pair for use by
    unattended automations, then reads the asset back by its returned ID to
    confirm the non-secret metadata persisted. The password field is write-only,
    so only the username and definition are verified on read. 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
sourceDescriptions:
- name: assetsApi
  url: ../openapi/uipath-assets-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-credential-asset
  summary: Create a Credential asset then read it back to confirm.
  description: >-
    Creates a Credential asset with a username and password, then retrieves it by
    ID to confirm its definition.
  inputs:
    type: object
    required:
    - folderId
    - assetName
    - username
    - password
    properties:
      folderId:
        type: integer
        description: Numeric folder ID used as the organization unit context.
      assetName:
        type: string
        description: Display name for the credential asset.
      username:
        type: string
        description: Username portion stored in the credential asset.
      password:
        type: string
        description: Password portion stored in the credential asset (write-only).
      description:
        type: string
        description: Optional description of the credential asset's purpose.
  steps:
  - stepId: createCredential
    description: >-
      Create a Credential asset in the folder storing the supplied username and
      password pair.
    operationId: createAsset
    parameters:
    - name: X-UIPATH-OrganizationUnitId
      in: header
      value: $inputs.folderId
    requestBody:
      contentType: application/json
      payload:
        Name: $inputs.assetName
        ValueType: Credential
        CredentialUsername: $inputs.username
        CredentialPassword: $inputs.password
        Description: $inputs.description
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      assetId: $response.body#/Id
      valueType: $response.body#/ValueType
  - stepId: confirmCredential
    description: >-
      Read the credential asset back by its ID to confirm its name, type, and
      username persisted. The password is write-only and is not returned.
    operationId: getAsset
    parameters:
    - name: key
      in: path
      value: $steps.createCredential.outputs.assetId
    - name: X-UIPATH-OrganizationUnitId
      in: header
      value: $inputs.folderId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      confirmedName: $response.body#/Name
      confirmedUsername: $response.body#/CredentialUsername
      confirmedType: $response.body#/ValueType
  outputs:
    assetId: $steps.createCredential.outputs.assetId
    confirmedUsername: $steps.confirmCredential.outputs.confirmedUsername
    confirmedType: $steps.confirmCredential.outputs.confirmedType

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/uipath-provision-credential-asset-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.