Apideck · Capability

Apideck CRM API — Custom Objects

Apideck CRM API — Custom Objects. 5 operations. Lead operation: Apideck List custom objects. Self-contained Naftiko capability covering one Apideck business surface.

Run with Naftiko ApideckCustom Objects

What You Can Do

GET
Customobjectsall — Apideck List custom objects
/v1/crm/custom-objects/{object-id}
POST
Customobjectsadd — Apideck Create custom object
/v1/crm/custom-objects/{object-id}
GET
Customobjectsone — Apideck Get custom object
/v1/crm/custom-objects/{object-id}/{id}
PATCH
Customobjectsupdate — Apideck Update custom object
/v1/crm/custom-objects/{object-id}/{id}
DELETE
Customobjectsdelete — Apideck Delete custom object
/v1/crm/custom-objects/{object-id}/{id}

MCP Tools

apideck-list-custom-objects

Apideck List custom objects

read-only idempotent
apideck-create-custom-object

Apideck Create custom object

apideck-get-custom-object

Apideck Get custom object

read-only idempotent
apideck-update-custom-object

Apideck Update custom object

idempotent
apideck-delete-custom-object

Apideck Delete custom object

idempotent

Capability Spec

crm-custom-objects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apideck CRM API — Custom Objects
  description: 'Apideck CRM API — Custom Objects. 5 operations. Lead operation: Apideck List custom objects. Self-contained
    Naftiko capability covering one Apideck business surface.'
  tags:
  - Apideck
  - Custom Objects
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    APIDECK_API_KEY: APIDECK_API_KEY
capability:
  consumes:
  - type: http
    namespace: crm-custom-objects
    baseUri: https://unify.apideck.com
    description: Apideck CRM API — Custom Objects business capability. Self-contained, no shared references.
    resources:
    - name: crm-custom-objects-object_id
      path: /crm/custom-objects/{object_id}
      operations:
      - name: customobjectsall
        method: GET
        description: Apideck List custom objects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: customobjectsadd
        method: POST
        description: Apideck Create custom object
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: crm-custom-objects-object_id-id
      path: /crm/custom-objects/{object_id}/{id}
      operations:
      - name: customobjectsone
        method: GET
        description: Apideck Get custom object
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: customobjectsupdate
        method: PATCH
        description: Apideck Update custom object
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: customobjectsdelete
        method: DELETE
        description: Apideck Delete custom object
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: apikey
      key: Authorization
      value: '{{env.APIDECK_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: crm-custom-objects-rest
    port: 8080
    description: REST adapter for Apideck CRM API — Custom Objects. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/crm/custom-objects/{object-id}
      name: crm-custom-objects-object-id
      description: REST surface for crm-custom-objects-object_id.
      operations:
      - method: GET
        name: customobjectsall
        description: Apideck List custom objects
        call: crm-custom-objects.customobjectsall
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: customobjectsadd
        description: Apideck Create custom object
        call: crm-custom-objects.customobjectsadd
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/crm/custom-objects/{object-id}/{id}
      name: crm-custom-objects-object-id-id
      description: REST surface for crm-custom-objects-object_id-id.
      operations:
      - method: GET
        name: customobjectsone
        description: Apideck Get custom object
        call: crm-custom-objects.customobjectsone
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: customobjectsupdate
        description: Apideck Update custom object
        call: crm-custom-objects.customobjectsupdate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: customobjectsdelete
        description: Apideck Delete custom object
        call: crm-custom-objects.customobjectsdelete
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: crm-custom-objects-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apideck CRM API — Custom Objects. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: apideck-list-custom-objects
      description: Apideck List custom objects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: crm-custom-objects.customobjectsall
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-create-custom-object
      description: Apideck Create custom object
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: crm-custom-objects.customobjectsadd
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-get-custom-object
      description: Apideck Get custom object
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: crm-custom-objects.customobjectsone
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-update-custom-object
      description: Apideck Update custom object
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: crm-custom-objects.customobjectsupdate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-delete-custom-object
      description: Apideck Delete custom object
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: crm-custom-objects.customobjectsdelete
      outputParameters:
      - type: object
        mapping: $.