Didomi · Arazzo Workflow

Didomi Provision an Organization and Invite a Member

Version 1.0.0

Create an organization, invite a first member into it, and read the organization back.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AdvertisingAdTechCCPACMPConsentConsent ManagementDSARData PrivacyGDPRIAB TCFMarTechPreference ManagementPrivacyPrivacy RequestsRegulatory ComplianceArazzoWorkflows

Provider

didomi

Workflows

provision-organization
Create an organization, invite its first member, and read the organization back.
Creates a new organization, invites a member into it by email, and reads the organization back by its ID to confirm provisioning succeeded.
3 steps inputs: memberEmail, memberName, organizationName, token, website outputs: memberId, organizationId
1
createOrganization
{$sourceDescriptions.organizationsApi.url}#/paths/~1organizations/post
Create a new organization. Only name is required by the OrganizationInput schema.
2
inviteMember
{$sourceDescriptions.membersApi.url}#/paths/~1members/post
Invite a member into the new organization. name, email and organization_id are all required by the InvitedMemberInput schema. If the user is new an email with a password reset link is sent.
3
getOrganization
{$sourceDescriptions.organizationsApi.url}#/paths/~1organizations~1{id}/get
Read the organization back by its ID to confirm it was created.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Didomi Provision an Organization and Invite a Member
  summary: Create an organization, invite a first member into it, and read the organization back.
  description: >-
    An onboarding pattern for standing up a new Didomi organization. The workflow
    creates an organization, invites a first member (which provisions the user and
    sends a password reset email if the user is new), and then reads the
    organization back to confirm it exists. Each step spells out its request
    inline, including the bearer Authorization header, so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: membersApi
  url: ../openapi/didomi-members-api-openapi.yml
  type: openapi
- name: organizationsApi
  url: ../openapi/didomi-organizations-api-openapi.yml
  type: openapi
workflows:
- workflowId: provision-organization
  summary: Create an organization, invite its first member, and read the organization back.
  description: >-
    Creates a new organization, invites a member into it by email, and reads the
    organization back by its ID to confirm provisioning succeeded.
  inputs:
    type: object
    required:
    - token
    - organizationName
    - memberName
    - memberEmail
    properties:
      token:
        type: string
        description: A valid Didomi JWT used as the bearer token for the Authorization header.
      organizationName:
        type: string
        description: Unique name of the organization to create.
      website:
        type: string
        description: Optional website URL of the organization.
      memberName:
        type: string
        description: Name of the member to invite into the new organization.
      memberEmail:
        type: string
        description: Email address of the member to invite.
  steps:
  - stepId: createOrganization
    description: >-
      Create a new organization. Only name is required by the OrganizationInput
      schema.
    operationPath: '{$sourceDescriptions.organizationsApi.url}#/paths/~1organizations/post'
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.token"
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.organizationName
        website: $inputs.website
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      organizationId: $response.body#/id
  - stepId: inviteMember
    description: >-
      Invite a member into the new organization. name, email and organization_id
      are all required by the InvitedMemberInput schema. If the user is new an
      email with a password reset link is sent.
    operationPath: '{$sourceDescriptions.membersApi.url}#/paths/~1members/post'
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.token"
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.memberName
        email: $inputs.memberEmail
        organization_id: $steps.createOrganization.outputs.organizationId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      memberId: $response.body#/id
      userId: $response.body#/user_id
  - stepId: getOrganization
    description: >-
      Read the organization back by its ID to confirm it was created.
    operationPath: '{$sourceDescriptions.organizationsApi.url}#/paths/~1organizations~1{id}/get'
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.token"
    - name: id
      in: path
      value: $steps.createOrganization.outputs.organizationId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      organizationId: $response.body#/id
      name: $response.body#/name
  outputs:
    organizationId: $steps.getOrganization.outputs.organizationId
    memberId: $steps.inviteMember.outputs.memberId

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/didomi-provision-organization-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.