Salesloft · Capability

Salesloft — Calls

Salesloft — Calls. 3 operations. Lead operation: Salesloft List Calls. Self-contained Naftiko capability covering one Salesloft business surface.

Run with Naftiko SalesloftCalls

What You Can Do

GET
Get — Salesloft List Calls
/v1/activities/calls
POST
Post — Salesloft Create a Call
/v1/activities/calls
GET
Get — Salesloft Fetch a Call
/v1/activities/calls/{id}

MCP Tools

salesloft-list-calls

Salesloft List Calls

read-only idempotent
salesloft-create-call

Salesloft Create a Call

salesloft-fetch-call

Salesloft Fetch a Call

read-only idempotent

Capability Spec

salesloft-calls.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Salesloft — Calls
  description: 'Salesloft — Calls. 3 operations. Lead operation: Salesloft List Calls. Self-contained Naftiko capability covering
    one Salesloft business surface.'
  tags:
  - Salesloft
  - Calls
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SALESLOFT_API_KEY: SALESLOFT_API_KEY
capability:
  consumes:
  - type: http
    namespace: salesloft-calls
    baseUri: http://{{salesloft_api_base_url}}
    description: Salesloft — Calls business capability. Self-contained, no shared references.
    resources:
    - name: activities-calls
      path: /activities/calls
      operations:
      - name: get
        method: GET
        description: Salesloft List Calls
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: ids
          in: query
          type: string
        - name: created_at[gt]
          in: query
          type: string
        - name: created_at[gte]
          in: query
          type: string
        - name: created_at[lt]
          in: query
          type: string
        - name: created_at[lte]
          in: query
          type: string
        - name: updated_at[gt]
          in: query
          type: string
        - name: updated_at[gte]
          in: query
          type: string
        - name: updated_at[lt]
          in: query
          type: string
        - name: updated_at[lte]
          in: query
          type: string
        - name: user_guid
          in: query
          type: string
        - name: person_id
          in: query
          type: string
        - name: sentiment
          in: query
          type: string
        - name: disposition
          in: query
          type: string
        - name: sort_by
          in: query
          type: string
        - name: sort_direction
          in: query
          type: string
        - name: per_page
          in: query
          type: string
        - name: page
          in: query
          type: string
        - name: include_paging_counts
          in: query
          type: string
        - name: limit_paging_counts
          in: query
          type: string
      - name: post
        method: POST
        description: Salesloft Create a Call
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: activities-calls-id
      path: /activities/calls/{id}
      operations:
      - name: get
        method: GET
        description: Salesloft Fetch a Call
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
    authentication:
      type: bearer
      token: '{{env.SALESLOFT_API_KEY}}'
  exposes:
  - type: rest
    namespace: salesloft-calls-rest
    port: 8080
    description: REST adapter for Salesloft — Calls. One Spectral-compliant resource per consumed operation, prefixed with
      /v1.
    resources:
    - path: /v1/activities/calls
      name: activities-calls
      description: REST surface for activities-calls.
      operations:
      - method: GET
        name: get
        description: Salesloft List Calls
        call: salesloft-calls.get
        with:
          ids: rest.ids
          created_at[gt]: rest.created_at[gt]
          created_at[gte]: rest.created_at[gte]
          created_at[lt]: rest.created_at[lt]
          created_at[lte]: rest.created_at[lte]
          updated_at[gt]: rest.updated_at[gt]
          updated_at[gte]: rest.updated_at[gte]
          updated_at[lt]: rest.updated_at[lt]
          updated_at[lte]: rest.updated_at[lte]
          user_guid: rest.user_guid
          person_id: rest.person_id
          sentiment: rest.sentiment
          disposition: rest.disposition
          sort_by: rest.sort_by
          sort_direction: rest.sort_direction
          per_page: rest.per_page
          page: rest.page
          include_paging_counts: rest.include_paging_counts
          limit_paging_counts: rest.limit_paging_counts
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: post
        description: Salesloft Create a Call
        call: salesloft-calls.post
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/activities/calls/{id}
      name: activities-calls-id
      description: REST surface for activities-calls-id.
      operations:
      - method: GET
        name: get
        description: Salesloft Fetch a Call
        call: salesloft-calls.get
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: salesloft-calls-mcp
    port: 9090
    transport: http
    description: MCP adapter for Salesloft — Calls. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: salesloft-list-calls
      description: Salesloft List Calls
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesloft-calls.get
      with:
        ids: tools.ids
        created_at[gt]: tools.created_at[gt]
        created_at[gte]: tools.created_at[gte]
        created_at[lt]: tools.created_at[lt]
        created_at[lte]: tools.created_at[lte]
        updated_at[gt]: tools.updated_at[gt]
        updated_at[gte]: tools.updated_at[gte]
        updated_at[lt]: tools.updated_at[lt]
        updated_at[lte]: tools.updated_at[lte]
        user_guid: tools.user_guid
        person_id: tools.person_id
        sentiment: tools.sentiment
        disposition: tools.disposition
        sort_by: tools.sort_by
        sort_direction: tools.sort_direction
        per_page: tools.per_page
        page: tools.page
        include_paging_counts: tools.include_paging_counts
        limit_paging_counts: tools.limit_paging_counts
      outputParameters:
      - type: object
        mapping: $.
    - name: salesloft-create-call
      description: Salesloft Create a Call
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: salesloft-calls.post
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: salesloft-fetch-call
      description: Salesloft Fetch a Call
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesloft-calls.get
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.