Dotdigital Apispaces API

The Apispaces API from Dotdigital — 2 operation(s) for apispaces.

Operations 2

DELETE /apispaces/{apiSpaceId}/profiles/{id}/devices/{deviceId} Removes device from profile and closes related opened sessions
POST /apispaces/{apiSpaceId}/profiles/devices/push/validation Retrieves push capabilities summary

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/dotdigital-apispaces-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 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.

OpenAPI Specification

dotdigital-apispaces-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Profile Apispaces API
  description: 'Provides methods for creating, retrieving, updating, patching, and deleting

    customer profiles. Also supports bulk create/update and bulk delete

    operations, profile opt-in management by channel, profile relationship

    linking, device management, and push capability validation.'
  version: 1.0.1
servers:
- url: https://{region}-api.dotdigital.com
  variables:
    region:
      description: The Dotdigital region id your account belongs to
      enum:
      - r1
      - r2
      - r3
      default: r1
security:
- basicAuth: []
tags:
- name: Apispaces
paths:
  /apispaces/{apiSpaceId}/profiles/{id}/devices/{deviceId}:
    delete:
      summary: Removes device from profile and closes related opened sessions
      parameters:
      - name: apiSpaceId
        in: path
        description: The API space id
        required: true
        schema:
          pattern: ^([a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})|[a-f0-9]{32}$
          type: string
      - name: id
        in: path
        description: The id of the profile
        required: true
        schema:
          type: string
      - name: deviceId
        in: path
        description: The id of the device
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Device sucessfully removed from profile
        '404':
          description: Device with specified id not found
      tags:
      - Apispaces
  /apispaces/{apiSpaceId}/profiles/devices/push/validation:
    post:
      summary: Retrieves push capabilities summary
      parameters:
      - name: apiSpaceId
        in: path
        description: The API space id
        required: true
        schema:
          pattern: ^([a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12})|[a-f0-9]{32}$
          type: string
      requestBody:
        description: ids of the profiles to query
        content:
          '*/*':
            schema:
              $ref: '#/components/schemas/push_validation_body'
        required: true
      responses:
        '200':
          description: The requested push capabilities summary
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PushCapabilitiesSummary'
      tags:
      - Apispaces
components:
  schemas:
    push_validation_body:
      type: object
      properties:
        ids:
          type: array
          items:
            type: string
    PushCapabilitiesSummary:
      type: array
      description: Array with push capabilities for each queried profile
      items:
        $ref: '#/components/schemas/PushCapabilitiesSummary_inner'
    PushCapabilitiesSummary_inner:
      required:
      - id
      - pushDevicesCount
      type: object
      properties:
        id:
          type: string
          description: Profile id
        pushDevicesCount:
          type: number
          description: Count of devices that have push details
        fcm:
          type: array
          description: Package names for fcm push tokens registered for this profile
          items:
            type: string
        apns:
          type: array
          description: <bundleId>.<environment> string for apns push tokens registered for this profile
          items:
            type: string
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
x-readme:
  samples-languages:
  - curl
  - csharp
  - java
  - node
  - php
  - python
  - ruby
  explorer-enabled: true
  proxy-enabled: true
  samples-enabled: true