Dotdigital API Data Field API

The ApiDataField API from Dotdigital — 2 operation(s) for apidatafield.

Operations 3

POST /v2/data-fields Creates a data field within the account. #
GET /v2/data-fields Lists the data fields within the account. #
DELETE /v2/data-fields/{name} Deletes a data field within the account. #

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-apidatafield-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-apidatafield-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: apiconnector.com API Data Field API
  version: v2
servers:
- url: https://r1-api.dotdigital.com
tags:
- name: ApiDataField
paths:
  /v2/data-fields:
    post:
      tags:
      - ApiDataField
      summary: Creates a data field within the account.
      operationId: ApiDataField_CreateDataField
      requestBody:
        x-name: dataField
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiDataField'
        required: true
        x-position: 1
      responses:
        '201':
          description: ''
    get:
      tags:
      - ApiDataField
      summary: Lists the data fields within the account.
      operationId: ApiDataField_GetDataFields
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ApiDataField'
  /v2/data-fields/{name}:
    delete:
      tags:
      - ApiDataField
      summary: Deletes a data field within the account.
      operationId: ApiDataField_DeleteDataField
      parameters:
      - name: name
        in: path
        required: true
        schema:
          type: string
        x-position: 1
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiDependencyResult'
        '409':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProblemDetails'
components:
  schemas:
    ApiDependencyResult:
      type: object
      additionalProperties: false
      properties:
        dependencies:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ApiDependency'
        result:
          type: boolean
    ApiDataField:
      type: object
      additionalProperties: false
      required:
      - name
      properties:
        name:
          type: string
          minLength: 1
        type:
          $ref: '#/components/schemas/ApiDataTypes'
        visibility:
          $ref: '#/components/schemas/ApiDataFieldVisibility'
        defaultValue: {}
    ApiDataFieldVisibility:
      type: string
      description: ''
      x-enumNames:
      - Private
      - Public
      - NotAvailableInThisVersion
      enum:
      - Private
      - Public
      - NotAvailableInThisVersion
    ApiDependency:
      type: object
      additionalProperties: false
      properties:
        type:
          $ref: '#/components/schemas/ApiBusinessObjectType'
        objectId:
          type: integer
          format: int32
    ApiBusinessObjectType:
      type: string
      description: ''
      x-enumNames:
      - Campaign
      - Survey
      - MicrositePage
      - DynamicContent
      - ContactLabel
      - SurveyQuestion
      - AddressBook
      - DynamicContentRule
      - CampaignLink
      - CampaignTemplate
      - NotAvailableInThisVersion
      enum:
      - Campaign
      - Survey
      - MicrositePage
      - DynamicContent
      - ContactLabel
      - SurveyQuestion
      - AddressBook
      - DynamicContentRule
      - CampaignLink
      - CampaignTemplate
      - NotAvailableInThisVersion
    ProblemDetails:
      type: object
      additionalProperties: {}
      properties:
        type:
          type:
          - string
          - 'null'
        title:
          type:
          - string
          - 'null'
        status:
          type:
          - integer
          - 'null'
          format: int32
        detail:
          type:
          - string
          - 'null'
        instance:
          type:
          - string
          - 'null'
        extensions:
          type: object
          additionalProperties: {}
    ApiDataTypes:
      type: string
      description: ''
      x-enumNames:
      - String
      - Numeric
      - Date
      - Boolean
      - NotAvailableInThisVersion
      enum:
      - String
      - Numeric
      - Date
      - Boolean
      - NotAvailableInThisVersion
x-generator: NSwag v14.4.0.0 (NJsonSchema v11.3.2.0 (Newtonsoft.Json v13.0.0.0))