Apideck · Capability

Apideck CRM API — Custom Object Schemas

Apideck CRM API — Custom Object Schemas. 5 operations. Lead operation: Apideck List custom object schemas. Self-contained Naftiko capability covering one Apideck business surface.

Run with Naftiko ApideckCustom Object Schemas

What You Can Do

GET
Customobjectschemasall — Apideck List custom object schemas
/v1/crm/custom-object-schemas
POST
Customobjectschemasadd — Apideck Create custom object schema
/v1/crm/custom-object-schemas
GET
Customobjectschemasone — Apideck Get custom object schema
/v1/crm/custom-object-schemas/{id}
PATCH
Customobjectschemasupdate — Apideck Update custom object schema
/v1/crm/custom-object-schemas/{id}
DELETE
Customobjectschemasdelete — Apideck Delete custom object schema
/v1/crm/custom-object-schemas/{id}

MCP Tools

apideck-list-custom-object-schemas

Apideck List custom object schemas

read-only idempotent
apideck-create-custom-object-schema

Apideck Create custom object schema

apideck-get-custom-object-schema

Apideck Get custom object schema

read-only idempotent
apideck-update-custom-object-schema

Apideck Update custom object schema

idempotent
apideck-delete-custom-object-schema

Apideck Delete custom object schema

idempotent

Capability Spec

crm-custom-object-schemas.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Apideck CRM API — Custom Object Schemas
  description: 'Apideck CRM API — Custom Object Schemas. 5 operations. Lead operation: Apideck List custom object schemas.
    Self-contained Naftiko capability covering one Apideck business surface.'
  tags:
  - Apideck
  - Custom Object Schemas
  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-object-schemas
    baseUri: https://unify.apideck.com
    description: Apideck CRM API — Custom Object Schemas business capability. Self-contained, no shared references.
    resources:
    - name: crm-custom-object-schemas
      path: /crm/custom-object-schemas
      operations:
      - name: customobjectschemasall
        method: GET
        description: Apideck List custom object schemas
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: customobjectschemasadd
        method: POST
        description: Apideck Create custom object schema
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: crm-custom-object-schemas-id
      path: /crm/custom-object-schemas/{id}
      operations:
      - name: customobjectschemasone
        method: GET
        description: Apideck Get custom object schema
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: customobjectschemasupdate
        method: PATCH
        description: Apideck Update custom object schema
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: customobjectschemasdelete
        method: DELETE
        description: Apideck Delete custom object schema
        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-object-schemas-rest
    port: 8080
    description: REST adapter for Apideck CRM API — Custom Object Schemas. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/crm/custom-object-schemas
      name: crm-custom-object-schemas
      description: REST surface for crm-custom-object-schemas.
      operations:
      - method: GET
        name: customobjectschemasall
        description: Apideck List custom object schemas
        call: crm-custom-object-schemas.customobjectschemasall
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: customobjectschemasadd
        description: Apideck Create custom object schema
        call: crm-custom-object-schemas.customobjectschemasadd
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/crm/custom-object-schemas/{id}
      name: crm-custom-object-schemas-id
      description: REST surface for crm-custom-object-schemas-id.
      operations:
      - method: GET
        name: customobjectschemasone
        description: Apideck Get custom object schema
        call: crm-custom-object-schemas.customobjectschemasone
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: customobjectschemasupdate
        description: Apideck Update custom object schema
        call: crm-custom-object-schemas.customobjectschemasupdate
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: customobjectschemasdelete
        description: Apideck Delete custom object schema
        call: crm-custom-object-schemas.customobjectschemasdelete
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: crm-custom-object-schemas-mcp
    port: 9090
    transport: http
    description: MCP adapter for Apideck CRM API — Custom Object Schemas. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: apideck-list-custom-object-schemas
      description: Apideck List custom object schemas
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: crm-custom-object-schemas.customobjectschemasall
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-create-custom-object-schema
      description: Apideck Create custom object schema
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: crm-custom-object-schemas.customobjectschemasadd
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-get-custom-object-schema
      description: Apideck Get custom object schema
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: crm-custom-object-schemas.customobjectschemasone
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-update-custom-object-schema
      description: Apideck Update custom object schema
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: crm-custom-object-schemas.customobjectschemasupdate
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: apideck-delete-custom-object-schema
      description: Apideck Delete custom object schema
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: crm-custom-object-schemas.customobjectschemasdelete
      outputParameters:
      - type: object
        mapping: $.