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

# Get a recording by ID

> GetRecording returns the recording for the given recording ID.




## OpenAPI

````yaml /openapi/platform-api.yaml get /o/{organisation_id}/automations/{automation_id}/recordings/{recording_id}
openapi: 3.1.0
info:
  title: Versori Platform API
  version: 0.0.1
  license:
    name: UNLICENSED
servers:
  - description: Production
    url: https://platform.versori.com/api/v2
  - description: Staging
    url: https://platform-staging.versori.com/api/v2
  - description: Development
    url: http://localhost:8901
security:
  - bearerToken: []
  - cookie: []
paths:
  /o/{organisation_id}/automations/{automation_id}/recordings/{recording_id}:
    parameters:
      - $ref: '#/components/parameters/organisation_id'
      - $ref: '#/components/parameters/automation_id'
      - $ref: '#/components/parameters/recording_id'
    get:
      tags:
        - automations
      summary: Get a recording by ID
      description: |
        GetRecording returns the recording for the given recording ID.
      operationId: GetRecording
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AutomationRecording'
components:
  parameters:
    organisation_id:
      name: organisation_id
      in: path
      required: true
      schema:
        type: string
        format: ulid
        x-go-type: ulid.ULID
        x-go-name: OrganisationID
        x-go-type-import:
          path: versori.dev/vergo/ulid
    automation_id:
      name: automation_id
      in: path
      required: true
      schema:
        type: string
        format: ulid
        x-go-type: ulid.ULID
        x-go-name: AutomationID
        x-go-type-import:
          path: versori.dev/vergo/ulid
    recording_id:
      name: recording_id
      in: path
      required: true
      schema:
        type: string
        format: ulid
        x-go-type: ulid.ULID
        x-go-name: RecordingID
        x-go-type-import:
          path: versori.dev/vergo/ulid
  schemas:
    AutomationRecording:
      type: object
      properties:
        id:
          type: string
          format: ulid
          x-go-type: ulid.ULID
        transcription:
          type: string
        status:
          $ref: '#/components/schemas/AutomationJobStatus'
      required:
        - id
        - transcription
        - status
    AutomationJobStatus:
      type: string
      enum:
        - pending
        - running
        - completed
        - failed
  securitySchemes:
    bearerToken:
      description: >
        Bearer token authentication used by the Versori Platform. External
        consumers must provide an API key, however

        internal consumers must provide a JWT id_token issued by our IdP.
      type: http
      scheme: bearer
    cookie:
      description: Cookie authentication used by the Versori Platform.
      type: apiKey
      in: cookie
      name: cookie

````