# List or filter all OpportunityStatusChange activities

GET https://api.close.com/api/v1/activity/status_change/opportunity/

Reference: https://developer.close.com/api/resources/activities/opportunity-status-changes/list

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: Close API
  version: 1.0.0
paths:
  /activity/status_change/opportunity/:
    get:
      operationId: list
      summary: List or filter all OpportunityStatusChange activities
      tags:
        - subpackage_activitiesOpportunityStatusChanges
      parameters:
        - name: _limit
          in: query
          description: Number of results to return.
          required: false
          schema:
            type: integer
            default: 100
        - name: _skip
          in: query
          description: Number of results to skip before returning, for pagination.
          required: false
          schema:
            type: integer
            default: 0
        - name: id__in
          in: query
          description: Filter by activity IDs (comma-separated)
          required: false
          schema:
            type:
              - array
              - 'null'
            items:
              type: string
        - name: lead_id
          in: query
          description: Filter by lead IDs (comma-separated)
          required: false
          schema:
            type:
              - array
              - 'null'
            items:
              type: string
        - name: contact_id
          in: query
          description: Filter by contact IDs (comma-separated)
          required: false
          schema:
            type:
              - array
              - 'null'
            items:
              type: string
        - name: user_id
          in: query
          description: Filter by user IDs (comma-separated)
          required: false
          schema:
            type:
              - array
              - 'null'
            items:
              type: string
        - name: organization_id
          in: query
          required: false
          schema:
            type:
              - string
              - 'null'
        - name: _type
          in: query
          description: Filter by activity type, e.g. Call (comma-separated)
          required: false
          schema:
            type:
              - array
              - 'null'
            items:
              type: string
        - name: date_created__gte
          in: query
          required: false
          schema:
            $ref: >-
              #/components/schemas/ActivityStatusChangeOpportunityGetParametersDateCreatedGte
        - name: date_created__lte
          in: query
          required: false
          schema:
            $ref: >-
              #/components/schemas/ActivityStatusChangeOpportunityGetParametersDateCreatedLte
        - name: date_created__gt
          in: query
          required: false
          schema:
            $ref: >-
              #/components/schemas/ActivityStatusChangeOpportunityGetParametersDateCreatedGt
        - name: date_created__lt
          in: query
          required: false
          schema:
            $ref: >-
              #/components/schemas/ActivityStatusChangeOpportunityGetParametersDateCreatedLt
        - name: activity_at__gte
          in: query
          required: false
          schema:
            $ref: >-
              #/components/schemas/ActivityStatusChangeOpportunityGetParametersActivityAtGte
        - name: activity_at__lte
          in: query
          required: false
          schema:
            $ref: >-
              #/components/schemas/ActivityStatusChangeOpportunityGetParametersActivityAtLte
        - name: activity_at__gt
          in: query
          required: false
          schema:
            $ref: >-
              #/components/schemas/ActivityStatusChangeOpportunityGetParametersActivityAtGt
        - name: activity_at__lt
          in: query
          required: false
          schema:
            $ref: >-
              #/components/schemas/ActivityStatusChangeOpportunityGetParametersActivityAtLt
        - name: opportunity_id
          in: query
          required: false
          schema:
            type:
              - string
              - 'null'
        - name: Authorization
          in: header
          description: Basic authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/activities.opportunity_status_changes_list_Response_200
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                description: Any type
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                description: Any type
        '404':
          description: Not found
          content:
            application/json:
              schema:
                description: Any type
servers:
  - url: https://api.close.com/api/v1
components:
  schemas:
    ActivityStatusChangeOpportunityGetParametersDateCreatedGte:
      oneOf:
        - type: string
          format: date-time
        - type: string
          format: date
      title: ActivityStatusChangeOpportunityGetParametersDateCreatedGte
    ActivityStatusChangeOpportunityGetParametersDateCreatedLte:
      oneOf:
        - type: string
          format: date-time
        - type: string
          format: date
      title: ActivityStatusChangeOpportunityGetParametersDateCreatedLte
    ActivityStatusChangeOpportunityGetParametersDateCreatedGt:
      oneOf:
        - type: string
          format: date-time
        - type: string
          format: date
      title: ActivityStatusChangeOpportunityGetParametersDateCreatedGt
    ActivityStatusChangeOpportunityGetParametersDateCreatedLt:
      oneOf:
        - type: string
          format: date-time
        - type: string
          format: date
      title: ActivityStatusChangeOpportunityGetParametersDateCreatedLt
    ActivityStatusChangeOpportunityGetParametersActivityAtGte:
      oneOf:
        - type: string
          format: date-time
        - type: string
          format: date
      title: ActivityStatusChangeOpportunityGetParametersActivityAtGte
    ActivityStatusChangeOpportunityGetParametersActivityAtLte:
      oneOf:
        - type: string
          format: date-time
        - type: string
          format: date
      title: ActivityStatusChangeOpportunityGetParametersActivityAtLte
    ActivityStatusChangeOpportunityGetParametersActivityAtGt:
      oneOf:
        - type: string
          format: date-time
        - type: string
          format: date
      title: ActivityStatusChangeOpportunityGetParametersActivityAtGt
    ActivityStatusChangeOpportunityGetParametersActivityAtLt:
      oneOf:
        - type: string
          format: date-time
        - type: string
          format: date
      title: ActivityStatusChangeOpportunityGetParametersActivityAtLt
    activities.opportunity_status_changes_list_Response_200:
      type: object
      properties: {}
      description: Empty response body
      title: activities.opportunity_status_changes_list_Response_200
  securitySchemes:
    ApiKeyAuth:
      type: http
      scheme: basic
    OAuth2:
      type: http
      scheme: bearer

```