Close · Capability

API Endpoints — subpackage_opportunityStatuses

API Endpoints — subpackage_opportunityStatuses. 4 operations. Lead operation: List opportunity statuses for your organization. Self-contained Naftiko capability covering one Close business surface.

Run with Naftiko Closesubpackage_opportunityStatuses

What You Can Do

GET
List — List opportunity statuses for your organization
/v1/status/opportunity
POST
Create — Create an opportunity status
/v1/status/opportunity
PUT
Update — Rename an opportunity status
/v1/status/opportunity/{id}
DELETE
Delete — Delete an opportunity status
/v1/status/opportunity/{id}

MCP Tools

list-opportunity-statuses-your-organization

List opportunity statuses for your organization

read-only idempotent
create-opportunity-status

Create an opportunity status

rename-opportunity-status

Rename an opportunity status

idempotent
delete-opportunity-status

Delete an opportunity status

idempotent

Capability Spec

close-subpackage-opportunitystatuses.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: API Endpoints — subpackage_opportunityStatuses
  description: 'API Endpoints — subpackage_opportunityStatuses. 4 operations. Lead operation: List opportunity statuses for
    your organization. Self-contained Naftiko capability covering one Close business surface.'
  tags:
  - Close
  - subpackage_opportunityStatuses
  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-opportunitystatuses
    baseUri: https://api.close.com/api/v1
    description: API Endpoints — subpackage_opportunityStatuses business capability. Self-contained, no shared references.
    resources:
    - name: status-opportunity
      path: /status/opportunity/
      operations:
      - name: list
        method: GET
        description: List opportunity statuses for your organization
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - 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: Create an opportunity status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - 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: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: status-opportunity-id
      path: /status/opportunity/{id}/
      operations:
      - name: update
        method: PUT
        description: Rename an opportunity status
        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
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: delete
        method: DELETE
        description: Delete an opportunity status
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          required: true
        - 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-opportunitystatuses-rest
    port: 8080
    description: REST adapter for API Endpoints — subpackage_opportunityStatuses. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/status/opportunity
      name: status-opportunity
      description: REST surface for status-opportunity.
      operations:
      - method: GET
        name: list
        description: List opportunity statuses for your organization
        call: close-subpackage-opportunitystatuses.list
        with:
          _fields: rest._fields
          Authorization: rest.Authorization
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: create
        description: Create an opportunity status
        call: close-subpackage-opportunitystatuses.create
        with:
          _fields: rest._fields
          Authorization: rest.Authorization
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/status/opportunity/{id}
      name: status-opportunity-id
      description: REST surface for status-opportunity-id.
      operations:
      - method: PUT
        name: update
        description: Rename an opportunity status
        call: close-subpackage-opportunitystatuses.update
        with:
          id: rest.id
          _fields: rest._fields
          Authorization: rest.Authorization
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: delete
        description: Delete an opportunity status
        call: close-subpackage-opportunitystatuses.delete
        with:
          id: rest.id
          Authorization: rest.Authorization
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: close-subpackage-opportunitystatuses-mcp
    port: 9090
    transport: http
    description: MCP adapter for API Endpoints — subpackage_opportunityStatuses. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-opportunity-statuses-your-organization
      description: List opportunity statuses for your organization
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: close-subpackage-opportunitystatuses.list
      with:
        _fields: tools._fields
        Authorization: tools.Authorization
      outputParameters:
      - type: object
        mapping: $.
    - name: create-opportunity-status
      description: Create an opportunity status
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: close-subpackage-opportunitystatuses.create
      with:
        _fields: tools._fields
        Authorization: tools.Authorization
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: rename-opportunity-status
      description: Rename an opportunity status
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: close-subpackage-opportunitystatuses.update
      with:
        id: tools.id
        _fields: tools._fields
        Authorization: tools.Authorization
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-opportunity-status
      description: Delete an opportunity status
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: close-subpackage-opportunitystatuses.delete
      with:
        id: tools.id
        Authorization: tools.Authorization
      outputParameters:
      - type: object
        mapping: $.