Calendly · Capability

Calendly Scheduling API — Event Types

Calendly Scheduling API — Event Types. 3 operations. Lead operation: List event types. Self-contained Naftiko capability covering one Calendly business surface.

Run with Naftiko CalendlyEvent Types

What You Can Do

GET
Listeventtypes — List event types
/v1/event-types
GET
Geteventtype — Get event type
/v1/event-types/{uuid}
POST
Createoneoffeventtype — Create one-off event type
/v1/one-off-event-types

MCP Tools

list-event-types

List event types

read-only idempotent
get-event-type

Get event type

read-only idempotent
create-one-off-event-type

Create one-off event type

Capability Spec

scheduling-event-types.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Calendly Scheduling API — Event Types
  description: 'Calendly Scheduling API — Event Types. 3 operations. Lead operation: List event types. Self-contained Naftiko
    capability covering one Calendly business surface.'
  tags:
  - Calendly
  - Event Types
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CALENDLY_API_KEY: CALENDLY_API_KEY
capability:
  consumes:
  - type: http
    namespace: scheduling-event-types
    baseUri: https://api.calendly.com
    description: Calendly Scheduling API — Event Types business capability. Self-contained, no shared references.
    resources:
    - name: event_types
      path: /event_types
      operations:
      - name: listeventtypes
        method: GET
        description: List event types
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: user
          in: query
          type: string
          description: The URI of the user whose event types to list. Required if organization is not specified.
        - name: organization
          in: query
          type: string
          description: The URI of the organization whose event types to list. Required if user is not specified.
        - name: active
          in: query
          type: boolean
          description: Filter by active status. When true, only active event types are returned.
        - name: sort
          in: query
          type: string
          description: Sort order for results. Use name:asc or name:desc.
    - name: event_types-uuid
      path: /event_types/{uuid}
      operations:
      - name: geteventtype
        method: GET
        description: Get event type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: one_off_event_types
      path: /one_off_event_types
      operations:
      - name: createoneoffeventtype
        method: POST
        description: Create one-off event type
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.CALENDLY_API_KEY}}'
  exposes:
  - type: rest
    namespace: scheduling-event-types-rest
    port: 8080
    description: REST adapter for Calendly Scheduling API — Event Types. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/event-types
      name: event-types
      description: REST surface for event_types.
      operations:
      - method: GET
        name: listeventtypes
        description: List event types
        call: scheduling-event-types.listeventtypes
        with:
          user: rest.user
          organization: rest.organization
          active: rest.active
          sort: rest.sort
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/event-types/{uuid}
      name: event-types-uuid
      description: REST surface for event_types-uuid.
      operations:
      - method: GET
        name: geteventtype
        description: Get event type
        call: scheduling-event-types.geteventtype
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/one-off-event-types
      name: one-off-event-types
      description: REST surface for one_off_event_types.
      operations:
      - method: POST
        name: createoneoffeventtype
        description: Create one-off event type
        call: scheduling-event-types.createoneoffeventtype
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: scheduling-event-types-mcp
    port: 9090
    transport: http
    description: MCP adapter for Calendly Scheduling API — Event Types. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-event-types
      description: List event types
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: scheduling-event-types.listeventtypes
      with:
        user: tools.user
        organization: tools.organization
        active: tools.active
        sort: tools.sort
      outputParameters:
      - type: object
        mapping: $.
    - name: get-event-type
      description: Get event type
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: scheduling-event-types.geteventtype
      outputParameters:
      - type: object
        mapping: $.
    - name: create-one-off-event-type
      description: Create one-off event type
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: scheduling-event-types.createoneoffeventtype
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.