Microsoft Exchange · Arazzo Workflow

Microsoft Exchange Organize a Contacts Folder

Version 1.0.0

Create a contact folder, add a contact to it, and read the contact back.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub CalendarCollaborationContactsEmailEnterpriseArazzoWorkflows

Provider

microsoft-exchange

Workflows

organize-contacts-folder
Create a contact folder and add a contact into it.
Creates a named contact folder, creates a contact within it, and fetches the contact to verify creation.
3 steps inputs: emailAddress, folderName, givenName, surname outputs: contactId, displayName, folderId
1
createFolder
Create a new contact folder with the supplied display name.
2
addContact
Create a contact with name and email directly inside the new contact folder.
3
confirmContact
Read the contact back to confirm it persisted in the new folder.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Microsoft Exchange Organize a Contacts Folder
  summary: Create a contact folder, add a contact to it, and read the contact back.
  description: >-
    A contact organization pattern on Microsoft Graph contacts. The workflow
    creates a new contact folder, adds a contact directly into that folder, and
    reads the contact back to confirm it persisted. Each step inlines its
    request so the flow can be executed without consulting the underlying
    OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: contactFoldersApi
  url: ../openapi/microsoft-exchange-contact-folders-api-openapi.yml
  type: openapi
- name: contactsApi
  url: ../openapi/microsoft-exchange-contacts-api-openapi.yml
  type: openapi
workflows:
- workflowId: organize-contacts-folder
  summary: Create a contact folder and add a contact into it.
  description: >-
    Creates a named contact folder, creates a contact within it, and fetches
    the contact to verify creation.
  inputs:
    type: object
    required:
    - folderName
    - givenName
    - surname
    - emailAddress
    properties:
      folderName:
        type: string
        description: The display name of the contact folder to create.
      givenName:
        type: string
        description: The contact's given (first) name.
      surname:
        type: string
        description: The contact's surname (last name).
      emailAddress:
        type: string
        description: The contact's primary email address.
  steps:
  - stepId: createFolder
    description: >-
      Create a new contact folder with the supplied display name.
    operationId: createContactFolder
    requestBody:
      contentType: application/json
      payload:
        displayName: $inputs.folderName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      folderId: $response.body#/id
      displayName: $response.body#/displayName
  - stepId: addContact
    description: >-
      Create a contact with name and email directly inside the new contact
      folder.
    operationId: createContactInFolder
    parameters:
    - name: contactFolder-id
      in: path
      value: $steps.createFolder.outputs.folderId
    requestBody:
      contentType: application/json
      payload:
        givenName: $inputs.givenName
        surname: $inputs.surname
        emailAddresses:
        - address: $inputs.emailAddress
          name: $inputs.givenName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      contactId: $response.body#/id
  - stepId: confirmContact
    description: >-
      Read the contact back to confirm it persisted in the new folder.
    operationId: getContact
    parameters:
    - name: contact-id
      in: path
      value: $steps.addContact.outputs.contactId
    - name: $select
      in: query
      value: displayName,emailAddresses,parentFolderId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      displayName: $response.body#/displayName
  outputs:
    folderId: $steps.createFolder.outputs.folderId
    contactId: $steps.addContact.outputs.contactId
    displayName: $steps.confirmContact.outputs.displayName

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/microsoft-exchange-organize-contacts-folder-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.