Salesloft · Capability

Salesloft — Pending Emails

Salesloft — Pending Emails. 2 operations. Lead operation: Salesloft List Pending Emails. Self-contained Naftiko capability covering one Salesloft business surface.

Run with Naftiko SalesloftPending Emails

What You Can Do

GET
Get — Salesloft List Pending Emails
/v1/pending-emails
GET
Get — Salesloft Update a Pending Email
/v1/pending-emails/{id}

MCP Tools

salesloft-list-pending-emails

Salesloft List Pending Emails

read-only idempotent
salesloft-update-pending-email

Salesloft Update a Pending Email

read-only idempotent

Capability Spec

salesloft-pending-emails.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Salesloft — Pending Emails
  description: 'Salesloft — Pending Emails. 2 operations. Lead operation: Salesloft List Pending Emails. Self-contained Naftiko
    capability covering one Salesloft business surface.'
  tags:
  - Salesloft
  - Pending Emails
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SALESLOFT_API_KEY: SALESLOFT_API_KEY
capability:
  consumes:
  - type: http
    namespace: salesloft-pending-emails
    baseUri: http://{{salesloft_api_base_url}}
    description: Salesloft — Pending Emails business capability. Self-contained, no shared references.
    resources:
    - name: pending_emails
      path: /pending_emails
      operations:
      - name: get
        method: GET
        description: Salesloft List Pending Emails
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - 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: pending_emails-id
      path: /pending_emails/{id}
      operations:
      - name: get
        method: GET
        description: Salesloft Update a Pending Email
        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-pending-emails-rest
    port: 8080
    description: REST adapter for Salesloft — Pending Emails. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/pending-emails
      name: pending-emails
      description: REST surface for pending_emails.
      operations:
      - method: GET
        name: get
        description: Salesloft List Pending Emails
        call: salesloft-pending-emails.get
        with:
          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: $.
    - path: /v1/pending-emails/{id}
      name: pending-emails-id
      description: REST surface for pending_emails-id.
      operations:
      - method: GET
        name: get
        description: Salesloft Update a Pending Email
        call: salesloft-pending-emails.get
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: salesloft-pending-emails-mcp
    port: 9090
    transport: http
    description: MCP adapter for Salesloft — Pending Emails. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: salesloft-list-pending-emails
      description: Salesloft List Pending Emails
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesloft-pending-emails.get
      with:
        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-update-pending-email
      description: Salesloft Update a Pending Email
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: salesloft-pending-emails.get
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.