Didomi · Arazzo Workflow

Didomi Create and Verify a Privacy Center

Version 1.0.0

Create a privacy center for an organization and read it back to confirm it was created.

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

Provider

didomi

Workflows

create-privacy-center
Create a privacy center for an organization and read it back by ID.
Creates a privacy center owned by the organization and retrieves it by its ID to confirm that it was persisted.
2 steps inputs: legalName, name, organizationId, token, website outputs: privacyCenterId
1
createPrivacyCenter
{$sourceDescriptions.privacyCentersApi.url}#/paths/~1privacy-centers/post
Create a new privacy center. name and organization_id are both required by the PrivacyCenterInput schema.
2
getPrivacyCenter
{$sourceDescriptions.privacyCentersApi.url}#/paths/~1privacy-centers~1{id}/get
Read the privacy center back by its ID to confirm it was created.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Didomi Create and Verify a Privacy Center
  summary: Create a privacy center for an organization and read it back to confirm it was created.
  description: >-
    A Didomi pattern for standing up the public-facing privacy experience that
    gives end users legal information and consent-management options. The workflow
    creates a privacy center owned by an organization and reads it back by its ID
    to confirm creation. 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
  x-realizes-capability-ids:
  - BC-130.50
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-130.50
      capability_name: Privacy & Data Protection Management
      spec: didomi-privacy-centers-api-openapi.yml
      confidence: 0.78
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: privacyCentersApi
  url: ../openapi/didomi-privacy-centers-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-privacy-center
  summary: Create a privacy center for an organization and read it back by ID.
  description: >-
    Creates a privacy center owned by the organization and retrieves it by its ID
    to confirm that it was persisted.
  inputs:
    type: object
    required:
    - token
    - organizationId
    - name
    properties:
      token:
        type: string
        description: A valid Didomi JWT used as the bearer token for the Authorization header.
      organizationId:
        type: string
        description: The ID of the organization that owns the privacy center.
      name:
        type: string
        description: Display name of the privacy center (usually the company or website name).
      website:
        type: string
        description: Optional URL of the website linked to the privacy center.
      legalName:
        type: string
        description: Optional full legal name of the company.
  steps:
  - stepId: createPrivacyCenter
    description: >-
      Create a new privacy center. name and organization_id are both required by
      the PrivacyCenterInput schema.
    operationPath: '{$sourceDescriptions.privacyCentersApi.url}#/paths/~1privacy-centers/post'
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.token"
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.name
        organization_id: $inputs.organizationId
        website: $inputs.website
        legal_name: $inputs.legalName
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      privacyCenterId: $response.body#/id
  - stepId: getPrivacyCenter
    description: >-
      Read the privacy center back by its ID to confirm it was created.
    operationPath: '{$sourceDescriptions.privacyCentersApi.url}#/paths/~1privacy-centers~1{id}/get'
    parameters:
    - name: Authorization
      in: header
      value: "Bearer $inputs.token"
    - name: id
      in: path
      value: $steps.createPrivacyCenter.outputs.privacyCenterId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      privacyCenterId: $response.body#/id
      name: $response.body#/name
  outputs:
    privacyCenterId: $steps.getPrivacyCenter.outputs.privacyCenterId

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-create-privacy-center-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.