TranscriptListParameters: {
    after_id?: undefined | string;
    before_id?: undefined | string;
    created_on?: undefined | string;
    limit?: undefined | number;
    status?: undefined | TranscriptStatus;
    throttled_only?: undefined | boolean;
}

Type declaration

  • Optionalafter_id?: undefined | string

    Get transcripts that were created after this transcript ID

  • Optionalbefore_id?: undefined | string

    Get transcripts that were created before this transcript ID

  • Optionalcreated_on?: undefined | string

    Only get transcripts created on this date

  • Optionallimit?: undefined | number

    Maximum amount of transcripts to retrieve

    10
    
  • Optionalstatus?: undefined | TranscriptStatus

    Filter by transcript status

  • Optionalthrottled_only?: undefined | boolean

    Only get throttled transcripts, overrides the status filter

UseListTranscriptParams instead.