Dotdigital API Image API

The ApiImage API from Dotdigital — 3 operation(s) for apiimage.

Operations 4

GET /v2/image-folders Fetches the campaign image folder tree structure. #
GET /v2/image-folders/{id} Gets an image folder by id. #
POST /v2/image-folders/{id} Creates a new campaign image folder. #
POST /v2/image-folders/{folderId}/images Uploads a new campaign image into the specified folder. #

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-apiimage-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-apiimage-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: apiconnector.com API Image API
  version: v2
servers:
- url: https://r1-api.dotdigital.com
tags:
- name: ApiImage
paths:
  /v2/image-folders:
    get:
      tags:
      - ApiImage
      summary: Fetches the campaign image folder tree structure.
      operationId: ApiImage_GetImageFolders
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ApiImageFolder'
  /v2/image-folders/{id}:
    get:
      tags:
      - ApiImage
      summary: Gets an image folder by id.
      operationId: ApiImage_GetImageFolderById
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int32
        x-position: 1
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiImageFolder'
    post:
      tags:
      - ApiImage
      summary: Creates a new campaign image folder.
      operationId: ApiImage_CreateImageFolder
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: integer
          format: int32
        x-position: 1
      requestBody:
        x-name: folder
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiImageFolder'
        required: true
        x-position: 2
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiImageFolder'
  /v2/image-folders/{folderId}/images:
    post:
      tags:
      - ApiImage
      summary: Uploads a new campaign image into the specified folder.
      operationId: ApiImage_UploadImage
      parameters:
      - name: folderId
        in: path
        required: true
        schema:
          type: integer
          format: int32
        x-position: 1
      requestBody:
        x-name: file
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiFileMedia'
        required: true
        x-position: 2
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiImage'
components:
  schemas:
    ApiImage:
      type: object
      additionalProperties: false
      properties:
        id:
          type: integer
          format: int32
        name:
          type:
          - string
          - 'null'
        path:
          type:
          - string
          - 'null'
    ApiImageFolder:
      type: object
      additionalProperties: false
      required:
      - name
      properties:
        id:
          type: integer
          format: int32
        name:
          type: string
          minLength: 1
        childFolders:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/ApiImageFolder'
    ApiFileMedia:
      type: object
      additionalProperties: false
      properties:
        fileName:
          type:
          - string
          - 'null'
        data:
          type:
          - string
          - 'null'
          format: byte
x-generator: NSwag v14.4.0.0 (NJsonSchema v11.3.2.0 (Newtonsoft.Json v13.0.0.0))