Affinda · Arazzo Workflow

Affinda Invite Organization Member and Respond

Version 1.0.0

Create an organization invitation, look it up by token, and accept it on the invitee's behalf.

1 workflow 1 source API 1 provider
View Spec View on GitHub Artificial IntelligenceDocument ProcessingIntelligent Document ProcessingIDPOCRResume ParsingInvoice ParsingReceipt ParsingDocument ExtractionDocument ClassificationDocument SplittingRecruitmentBankingInsuranceLogisticsHealthcareGovernmentArazzoWorkflows

Provider

affinda

Workflows

invite-member-and-respond
Invite a member, look up the invitation by token, and accept it.
Creates an invitation, fetches it by token, and submits an accept response.
3 steps inputs: email, organization, role, token outputs: invitationIdentifier, status
1
createInvitation
Create an invitation for the email and role within the organization.
2
getByToken
Retrieve the invitation by its secret token, the path an unauthenticated invitee would use to view it.
3
acceptInvitation
Submit an accept response to the invitation on the invitee's behalf.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Affinda Invite Organization Member and Respond
  summary: Create an organization invitation, look it up by token, and accept it on the invitee's behalf.
  description: >-
    Drives the full member-invitation handshake. An invitation is created for an
    email and role within an organization, the invitation is retrieved by its
    secret token (the path an unauthenticated invitee would use), and a response is
    submitted to accept it. The token is delivered out of band to the invitee, so
    it is supplied as a workflow input. 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: organizationApiInvitationApi
  url: ../openapi/affinda-organization-api-invitation-api-openapi.yml
  type: openapi
workflows:
- workflowId: invite-member-and-respond
  summary: Invite a member, look up the invitation by token, and accept it.
  description: >-
    Creates an invitation, fetches it by token, and submits an accept response.
  inputs:
    type: object
    required:
    - organization
    - email
    - role
    - token
    properties:
      organization:
        type: string
        description: The organization identifier to invite the member into.
      email:
        type: string
        description: The email address of the person to invite.
      role:
        type: string
        description: The organization role to grant the invitee.
      token:
        type: string
        description: The secret invitation token delivered to the invitee.
  steps:
  - stepId: createInvitation
    description: Create an invitation for the email and role within the organization.
    operationId: createInvitation
    requestBody:
      contentType: application/json
      payload:
        organization: $inputs.organization
        email: $inputs.email
        role: $inputs.role
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      invitationIdentifier: $response.body#/identifier
  - stepId: getByToken
    description: >-
      Retrieve the invitation by its secret token, the path an unauthenticated
      invitee would use to view it.
    operationId: getInvitationByToken
    parameters:
    - name: token
      in: path
      value: $inputs.token
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
  - stepId: acceptInvitation
    description: Submit an accept response to the invitation on the invitee's behalf.
    operationId: respondToInvitation
    parameters:
    - name: token
      in: path
      value: $inputs.token
    requestBody:
      contentType: application/json
      payload:
        status: accepted
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
  outputs:
    invitationIdentifier: $steps.createInvitation.outputs.invitationIdentifier
    status: $steps.acceptInvitation.outputs.status

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/affinda-invite-member-and-respond-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.