UiPath · Arazzo Workflow

UiPath Establish Requirement Traceability

Version 1.0.0

Resolve a test project, create a requirement and a covering test case, then list test cases.

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

Provider

uipath

Workflows

requirement-traceability
Resolve a project, create a requirement and covering test case, then list cases.
Resolves a test project by name, creates a requirement and a covering test case, and lists the project's test cases to confirm.
4 steps inputs: externalId, projectName, requirementName, testCaseName outputs: projectId, requirementId, testCaseId, totalCount
1
findProject
List the available test projects to resolve the project ID for the supplied project name.
2
createRequirement
Create a requirement within the resolved project to represent the specification to be covered.
3
createCoveringTestCase
Create a test case in the project intended to cover the new requirement.
4
listProjectTestCases
List the project's test cases to confirm the newly created covering test case is present.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: UiPath Establish Requirement Traceability
  summary: Resolve a test project, create a requirement and a covering test case, then list test cases.
  description: >-
    A traceability pattern for Test Manager. The workflow lists the available
    test projects to resolve a target project by name, creates a requirement to
    represent a specification, adds a test case intended to cover it, and lists
    the project's test cases to confirm the new coverage is present. 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: discoveryApi
  url: ../openapi/uipath-discovery-api-openapi.yml
  type: openapi
- name: requirementsApi
  url: ../openapi/uipath-requirements-api-openapi.yml
  type: openapi
- name: testcasesApi
  url: ../openapi/uipath-testcases-api-openapi.yml
  type: openapi
workflows:
- workflowId: requirement-traceability
  summary: Resolve a project, create a requirement and covering test case, then list cases.
  description: >-
    Resolves a test project by name, creates a requirement and a covering test
    case, and lists the project's test cases to confirm.
  inputs:
    type: object
    required:
    - projectName
    - requirementName
    - testCaseName
    properties:
      projectName:
        type: string
        description: Name of the existing test project to resolve.
      requirementName:
        type: string
        description: Name of the requirement to create.
      externalId:
        type: string
        description: Optional external identifier for the requirement (e.g. a Jira key).
      testCaseName:
        type: string
        description: Name of the test case created to cover the requirement.
  steps:
  - stepId: findProject
    description: >-
      List the available test projects to resolve the project ID for the supplied
      project name.
    operationId: listProjects
    parameters:
    - name: pageSize
      in: query
      value: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      projectId: $response.body#/projects/0/id
  - stepId: createRequirement
    description: >-
      Create a requirement within the resolved project to represent the
      specification to be covered.
    operationId: createRequirement
    parameters:
    - name: projectId
      in: path
      value: $steps.findProject.outputs.projectId
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.requirementName
        externalId: $inputs.externalId
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      requirementId: $response.body#/id
  - stepId: createCoveringTestCase
    description: >-
      Create a test case in the project intended to cover the new requirement.
    operationId: createTestCase
    parameters:
    - name: projectId
      in: path
      value: $steps.findProject.outputs.projectId
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.testCaseName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      testCaseId: $response.body#/id
  - stepId: listProjectTestCases
    description: >-
      List the project's test cases to confirm the newly created covering test
      case is present.
    operationId: listTestCases
    parameters:
    - name: projectId
      in: path
      value: $steps.findProject.outputs.projectId
    - name: pageSize
      in: query
      value: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      totalCount: $response.body#/totalCount
  outputs:
    projectId: $steps.findProject.outputs.projectId
    requirementId: $steps.createRequirement.outputs.requirementId
    testCaseId: $steps.createCoveringTestCase.outputs.testCaseId
    totalCount: $steps.listProjectTestCases.outputs.totalCount

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-requirement-traceability-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.