UiPath · Arazzo Workflow

UiPath Data Service Entity Record Lifecycle

Version 1.0.0

Create, read, update, and delete a custom entity record end to end.

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

Provider

uipath

Workflows

entity-record-lifecycle
Create then read, update, and delete a Data Service entity record.
Creates an entity record, reads it by ID, updates it, and deletes it, confirming each stage succeeds.
4 steps inputs: createFields, entityName, updateFields outputs: finalModifiedOn, recordId
1
createRecord
Create a new entity record from the supplied creation fields.
2
readRecord
Retrieve the created record by its returned ID to confirm it exists.
3
updateRecord
Update the record by its ID with the supplied update fields.
4
deleteRecord
Permanently delete the record by its ID, completing the lifecycle.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: UiPath Data Service Entity Record Lifecycle
  summary: Create, read, update, and delete a custom entity record end to end.
  description: >-
    A full CRUD lifecycle for a Data Service entity record. The workflow creates
    a record from a supplied field map, reads it back by the returned ID, applies
    an update, and finally deletes it — exercising every operation a record goes
    through. 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: entitiesApi
  url: ../openapi/uipath-entities-api-openapi.yml
  type: openapi
workflows:
- workflowId: entity-record-lifecycle
  summary: Create then read, update, and delete a Data Service entity record.
  description: >-
    Creates an entity record, reads it by ID, updates it, and deletes it,
    confirming each stage succeeds.
  inputs:
    type: object
    required:
    - entityName
    - createFields
    - updateFields
    properties:
      entityName:
        type: string
        description: Name of the custom entity type as defined in the tenant schema.
      createFields:
        type: object
        description: Field name/value pairs for the initial record creation.
      updateFields:
        type: object
        description: Field name/value pairs applied during the update step.
  steps:
  - stepId: createRecord
    description: >-
      Create a new entity record from the supplied creation fields.
    operationId: createEntityRecord
    parameters:
    - name: entityName
      in: path
      value: $inputs.entityName
    requestBody:
      contentType: application/json
      payload: $inputs.createFields
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      recordId: $response.body#/Id
      createdOn: $response.body#/CreatedOn
  - stepId: readRecord
    description: >-
      Retrieve the created record by its returned ID to confirm it exists.
    operationId: getEntityRecord
    parameters:
    - name: entityName
      in: path
      value: $inputs.entityName
    - name: recordId
      in: path
      value: $steps.createRecord.outputs.recordId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      readModifiedOn: $response.body#/ModifiedOn
  - stepId: updateRecord
    description: >-
      Update the record by its ID with the supplied update fields.
    operationId: updateEntityRecord
    parameters:
    - name: entityName
      in: path
      value: $inputs.entityName
    - name: recordId
      in: path
      value: $steps.createRecord.outputs.recordId
    requestBody:
      contentType: application/json
      payload: $inputs.updateFields
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      modifiedOn: $response.body#/ModifiedOn
  - stepId: deleteRecord
    description: >-
      Permanently delete the record by its ID, completing the lifecycle.
    operationId: deleteEntityRecord
    parameters:
    - name: entityName
      in: path
      value: $inputs.entityName
    - name: recordId
      in: path
      value: $steps.createRecord.outputs.recordId
    successCriteria:
    - condition: $statusCode == 204
  outputs:
    recordId: $steps.createRecord.outputs.recordId
    finalModifiedOn: $steps.updateRecord.outputs.modifiedOn

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-entity-record-lifecycle-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.