Canva · Capability

Canva Connect API — Autofills

Canva Connect API — Autofills. 2 operations. Lead operation: Canva Create a Design Autofill Job. Self-contained Naftiko capability covering one Canva business surface.

Run with Naftiko CanvaAutofills

What You Can Do

POST
Createdesignautofilljob — Canva Create a Design Autofill Job
/v1/autofills
GET
Getdesignautofilljob — Canva Get a Design Autofill Job
/v1/autofills/{jobid}

MCP Tools

canva-create-design-autofill-job

Canva Create a Design Autofill Job

canva-get-design-autofill-job

Canva Get a Design Autofill Job

read-only idempotent

Capability Spec

connect-autofills.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Canva Connect API — Autofills
  description: 'Canva Connect API — Autofills. 2 operations. Lead operation: Canva Create a Design Autofill Job. Self-contained
    Naftiko capability covering one Canva business surface.'
  tags:
  - Canva
  - Autofills
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CANVA_API_KEY: CANVA_API_KEY
capability:
  consumes:
  - type: http
    namespace: connect-autofills
    baseUri: https://api.canva.com/rest/v1
    description: Canva Connect API — Autofills business capability. Self-contained, no shared references.
    resources:
    - name: autofills
      path: /autofills
      operations:
      - name: createdesignautofilljob
        method: POST
        description: Canva Create a Design Autofill Job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: autofills-jobId
      path: /autofills/{jobId}
      operations:
      - name: getdesignautofilljob
        method: GET
        description: Canva Get a Design Autofill Job
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.CANVA_API_KEY}}'
  exposes:
  - type: rest
    namespace: connect-autofills-rest
    port: 8080
    description: REST adapter for Canva Connect API — Autofills. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/autofills
      name: autofills
      description: REST surface for autofills.
      operations:
      - method: POST
        name: createdesignautofilljob
        description: Canva Create a Design Autofill Job
        call: connect-autofills.createdesignautofilljob
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/autofills/{jobid}
      name: autofills-jobid
      description: REST surface for autofills-jobId.
      operations:
      - method: GET
        name: getdesignautofilljob
        description: Canva Get a Design Autofill Job
        call: connect-autofills.getdesignautofilljob
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: connect-autofills-mcp
    port: 9090
    transport: http
    description: MCP adapter for Canva Connect API — Autofills. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: canva-create-design-autofill-job
      description: Canva Create a Design Autofill Job
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: connect-autofills.createdesignautofilljob
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: canva-get-design-autofill-job
      description: Canva Get a Design Autofill Job
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: connect-autofills.getdesignautofilljob
      outputParameters:
      - type: object
        mapping: $.