Didomi widgets/notices/remote-configs API

The widgets/notices/remote-configs API from Didomi — 1 operation(s) for widgets/notices/remote-configs.

Operations 1

POST /widgets/notices/remote-configs Deploy a SDK config

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/didomi-widgets-notices-remote-configs-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

didomi-widgets-notices-remote-configs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Didomi consents/events Widgets/notices/remote Configs API
  description: 'A REST API to communicate with the Didomi platform (<a href="https://api.didomi.io/v1/">https://api.didomi.io/v1/</a>)


    This is the complete specification of the API. A complete guide to authenticating and using the API is available on our <a href="https://developers.didomi.io/" target="_blank">Developers Portal</a>.


    All HTTP calls to the API require a valid JWT token. The token must be provided in an **Authorization** header with the value "Bearer <token>".

    Click on the Authorize button in the header of this page to provide a token before testing requests from this documentation.


    '
  version: '1.0'
servers:
- url: https://api.didomi.io/v1
  description: Didomi Platform API
security:
- bearer: []
tags:
- name: widgets/notices/remote-configs
paths:
  /widgets/notices/remote-configs:
    post:
      summary: Deploy a SDK config
      description: Directly deploy a SDK config to the production environment for the property
      security:
      - bearer: []
      parameters: []
      responses:
        '200':
          description: created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/sdk-configs'
        '401':
          description: not authenticated
        '403':
          description: forbidden
        '500':
          description: general error
      tags:
      - widgets/notices/remote-configs
      consumes:
      - application/json
      produces:
      - application/json
components:
  schemas:
    sdk-configs:
      type: object
      title: Didomi SDK configuration
      description: Consent notice configuration structured for a Didomi SDK
      properties:
        config:
          type: object
          description: Didomi SDK configuration (see https://developers.didomi.io/cmp/introduction)
      required:
      - config
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http