Close · Capability

API Endpoints — subpackage_bulkActionsSequenceSubscriptions

API Endpoints — subpackage_bulkActionsSequenceSubscriptions. 3 operations. Lead operation: List bulk sequence subscriptions. Self-contained Naftiko capability covering one Close business surface.

Run with Naftiko Closesubpackage_bulkActionsSequenceSubscriptions

What You Can Do

GET
List — List bulk sequence subscriptions
/v1/bulk-action/sequence-subscription
POST
Create — Initiate a new bulk sequence subscription
/v1/bulk-action/sequence-subscription
GET
Get — Fetch a single bulk sequence subscription object
/v1/bulk-action/sequence-subscription/{id}

MCP Tools

list-bulk-sequence-subscriptions

List bulk sequence subscriptions

read-only idempotent
initiate-new-bulk-sequence-subscription

Initiate a new bulk sequence subscription

fetch-single-bulk-sequence-subscription

Fetch a single bulk sequence subscription object

read-only idempotent

Capability Spec

close-subpackage-bulkactionssequencesubscriptions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: API Endpoints — subpackage_bulkActionsSequenceSubscriptions
  description: 'API Endpoints — subpackage_bulkActionsSequenceSubscriptions. 3 operations. Lead operation: List bulk sequence
    subscriptions. Self-contained Naftiko capability covering one Close business surface.'
  tags:
  - Close
  - subpackage_bulkActionsSequenceSubscriptions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    CLOSE_API_KEY: CLOSE_API_KEY
capability:
  consumes:
  - type: http
    namespace: close-subpackage-bulkactionssequencesubscriptions
    baseUri: https://api.close.com/api/v1
    description: API Endpoints — subpackage_bulkActionsSequenceSubscriptions business capability. Self-contained, no shared
      references.
    resources:
    - name: bulk_action-sequence_subscription
      path: /bulk_action/sequence_subscription/
      operations:
      - name: list
        method: GET
        description: List bulk sequence subscriptions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: _limit
          in: query
          type: integer
          description: Number of results to return.
        - name: _skip
          in: query
          type: integer
          description: Number of results to skip before returning, for pagination.
        - name: _fields
          in: query
          type: string
          description: Comma-separated list of fields to include in the response.
        - name: Authorization
          in: header
          type: string
          description: Use your API key as the username and leave the password empty.
          required: true
      - name: create
        method: POST
        description: Initiate a new bulk sequence subscription
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Authorization
          in: header
          type: string
          description: Use your API key as the username and leave the password empty.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: bulk_action-sequence_subscription-id
      path: /bulk_action/sequence_subscription/{id}/
      operations:
      - name: get
        method: GET
        description: Fetch a single bulk sequence subscription object
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - name: _fields
          in: query
          type: string
          description: Comma-separated list of fields to include in the response.
        - name: Authorization
          in: header
          type: string
          description: Use your API key as the username and leave the password empty.
          required: true
    authentication:
      type: bearer
      token: '{{env.CLOSE_API_KEY}}'
  exposes:
  - type: rest
    namespace: close-subpackage-bulkactionssequencesubscriptions-rest
    port: 8080
    description: REST adapter for API Endpoints — subpackage_bulkActionsSequenceSubscriptions. One Spectral-compliant resource
      per consumed operation, prefixed with /v1.
    resources:
    - path: /v1/bulk-action/sequence-subscription
      name: bulk-action-sequence-subscription
      description: REST surface for bulk_action-sequence_subscription.
      operations:
      - method: GET
        name: list
        description: List bulk sequence subscriptions
        call: close-subpackage-bulkactionssequencesubscriptions.list
        with:
          _limit: rest._limit
          _skip: rest._skip
          _fields: rest._fields
          Authorization: rest.Authorization
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: create
        description: Initiate a new bulk sequence subscription
        call: close-subpackage-bulkactionssequencesubscriptions.create
        with:
          Authorization: rest.Authorization
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/bulk-action/sequence-subscription/{id}
      name: bulk-action-sequence-subscription-id
      description: REST surface for bulk_action-sequence_subscription-id.
      operations:
      - method: GET
        name: get
        description: Fetch a single bulk sequence subscription object
        call: close-subpackage-bulkactionssequencesubscriptions.get
        with:
          id: rest.id
          _fields: rest._fields
          Authorization: rest.Authorization
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: close-subpackage-bulkactionssequencesubscriptions-mcp
    port: 9090
    transport: http
    description: MCP adapter for API Endpoints — subpackage_bulkActionsSequenceSubscriptions. One tool per consumed operation,
      routed inline through this capability's consumes block.
    tools:
    - name: list-bulk-sequence-subscriptions
      description: List bulk sequence subscriptions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: close-subpackage-bulkactionssequencesubscriptions.list
      with:
        _limit: tools._limit
        _skip: tools._skip
        _fields: tools._fields
        Authorization: tools.Authorization
      outputParameters:
      - type: object
        mapping: $.
    - name: initiate-new-bulk-sequence-subscription
      description: Initiate a new bulk sequence subscription
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: close-subpackage-bulkactionssequencesubscriptions.create
      with:
        Authorization: tools.Authorization
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: fetch-single-bulk-sequence-subscription
      description: Fetch a single bulk sequence subscription object
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: close-subpackage-bulkactionssequencesubscriptions.get
      with:
        id: tools.id
        _fields: tools._fields
        Authorization: tools.Authorization
      outputParameters:
      - type: object
        mapping: $.