Assembled · Arazzo Workflow

Assembled Update an Agent Profile

Version 1.0.0

Find an agent in the workforce, read their full profile, then patch their attributes.

1 workflow 1 source API 1 provider
View Spec View on GitHub Customer-SupportWorkforce ManagementWFMAI AgentsAI CopilotContact CenterCustomer ExperienceSupport OperationsSchedulingForecastingQuality AssuranceVendor ManagementBPOArazzoWorkflows

Provider

assembled

Workflows

update-agent-profile
Locate an active agent and patch their profile attributes.
Lists active people, picks the first agent, reads the full person record, and applies a partial update with the supplied attribute changes.
3 steps inputs: active, apiKey, updates outputs: agentId, updatedActive, updatedAgentId
1
listAgents
List people in the workforce, filtered by active status, returning the first page so a target agent can be selected.
2
getAgent
Retrieve the full person record for the selected agent to confirm current role, channels, skills, and team assignments before editing.
3
updateAgent
Partially update the agent with the supplied attributes. Only the fields provided in updates are changed; all other attributes are left intact.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Assembled Update an Agent Profile
  summary: Find an agent in the workforce, read their full profile, then patch their attributes.
  description: >-
    A core people-management pattern for Assembled. The workflow lists people
    filtered to active agents, selects the first match as the target agent,
    retrieves that person's full record to confirm the current state, and then
    partially updates their attributes (role, channels, skills, teams, site, or
    active status). 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: peopleApi
  url: ../openapi/assembled-people-api-openapi.yml
  type: openapi
workflows:
- workflowId: update-agent-profile
  summary: Locate an active agent and patch their profile attributes.
  description: >-
    Lists active people, picks the first agent, reads the full person record,
    and applies a partial update with the supplied attribute changes.
  inputs:
    type: object
    required:
    - apiKey
    - updates
    properties:
      apiKey:
        type: string
        description: Assembled API key (sk_live_...) used as the HTTP Basic Auth username.
      active:
        type: boolean
        description: Filter people to only active (true) or inactive (false) agents.
      updates:
        type: object
        description: Partial attributes to write to the agent (name, role_id, channels, skills, teams, site, active).
  steps:
  - stepId: listAgents
    description: >-
      List people in the workforce, filtered by active status, returning the
      first page so a target agent can be selected.
    operationId: listPeople
    parameters:
    - name: active
      in: query
      value: $inputs.active
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      agentId: $response.body#/people/0/id
      people: $response.body#/people
  - stepId: getAgent
    description: >-
      Retrieve the full person record for the selected agent to confirm current
      role, channels, skills, and team assignments before editing.
    operationId: getPerson
    parameters:
    - name: id
      in: path
      value: $steps.listAgents.outputs.agentId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      agentEmail: $response.body#/email
      currentRoleId: $response.body#/role_id
  - stepId: updateAgent
    description: >-
      Partially update the agent with the supplied attributes. Only the fields
      provided in updates are changed; all other attributes are left intact.
    operationId: updatePerson
    parameters:
    - name: id
      in: path
      value: $steps.listAgents.outputs.agentId
    requestBody:
      contentType: application/json
      payload: $inputs.updates
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      updatedAgentId: $response.body#/id
      updatedActive: $response.body#/active
  outputs:
    agentId: $steps.listAgents.outputs.agentId
    updatedAgentId: $steps.updateAgent.outputs.updatedAgentId
    updatedActive: $steps.updateAgent.outputs.updatedActive

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/assembled-agent-profile-update-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.