> ## Documentation Index
> Fetch the complete documentation index at: https://docs.useparagon.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Search Recording



## OpenAPI

````yaml /actionkit/openapi.json POST /projects/{project_id}/tools/#ZOOM_SEARCH_RECORDING
openapi: 3.0.0
info:
  title: ActionKit Tools API
  version: 1.0.0
servers:
  - url: https://actionkit.useparagon.com
    description: US Cloud
security: []
paths:
  /projects/{project_id}/tools/#ZOOM_SEARCH_RECORDING:
    post:
      summary: Search Recording
      parameters:
        - name: project_id
          in: path
          required: true
          schema:
            type: string
            description: >-
              Your Paragon Project ID. You can copy your Project ID from your
              dashboard URL or by clicking Copy Project ID under the Environment
              switcher.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                tool:
                  type: string
                  default: ZOOM_SEARCH_RECORDING
                parameters:
                  type: object
                  properties:
                    searchFrom:
                      type: string
                      description: >-
                        From Date : Start date in 'yyyy-mm-dd' UTC format
                        (example: "2022-10-22")
                    searchUpto:
                      type: string
                      description: >-
                        To Date : End date in 'yyyy-mm-dd' UTC format (example:
                        "2022-11-21")
                    meetingId:
                      type: string
                      description: 'Meeting ID (example: "6840331990")'
                    trash:
                      type: boolean
                      description: >-
                        Trash : Use in combination with Trash Type to indicate
                        type of Cloud Recording you need to retrieve
                    trashType:
                      type: string
                      description: >-
                        Trash Type : The type of Cloud recording that you would
                        like to retrieve from the trash
                      enum:
                        - meeting_recordings
                        - recording_file
                    includeToken:
                      type: boolean
                      description: >-
                        Include Token in Download URL : If set to true, all
                        download_url properties will include the user’s access
                        token.
                  x-integration: zoom
              required:
                - tool
                - parameters
      responses:
        '200':
          description: Success
      security:
        - BearerAuth: []
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: >-
        Your [Paragon User
        Token](/getting-started/installing-the-connect-sdk#setup) (JWT), which
        you can generate using your project's signing keys.

````