Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@ public partial interface ITranscriptClient
/// &lt;Note&gt;To retrieve your transcriptions on our EU server, replace `api.assemblyai.com` with `api.eu.assemblyai.com`.&lt;/Note&gt;<br/>
/// Retrieve a list of transcripts you created.<br/>
/// Transcripts are sorted from newest to oldest and can be retrieved for the last 90 days of usage. The previous URL always points to a page with older transcripts.<br/>
/// If you need to retrieve transcripts from more than 90 days ago please reach out to our Support team at support@assemblyai.com.
/// If you need to retrieve transcripts from more than 90 days ago please reach out to our Support team at support@assemblyai.com.<br/>
/// **Pagination**<br/>
/// This endpoint returns paginated results. The response includes a `page_details` object with the following properties:<br/>
/// - `page_details.limit` - Maximum number of transcripts per page.<br/>
/// - `page_details.result_count` - Total number of transcripts returned on the current page.<br/>
/// - `page_details.current_url` - URL to the current page.<br/>
/// - `page_details.prev_url` - URL to the previous page of older transcripts.<br/>
/// - `page_details.next_url` - URL to the next page of newer transcripts.
/// </summary>
/// <param name="limit">
/// Default Value: 10
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,14 @@ partial void ProcessListTranscriptsResponseContent(
/// &lt;Note&gt;To retrieve your transcriptions on our EU server, replace `api.assemblyai.com` with `api.eu.assemblyai.com`.&lt;/Note&gt;<br/>
/// Retrieve a list of transcripts you created.<br/>
/// Transcripts are sorted from newest to oldest and can be retrieved for the last 90 days of usage. The previous URL always points to a page with older transcripts.<br/>
/// If you need to retrieve transcripts from more than 90 days ago please reach out to our Support team at support@assemblyai.com.
/// If you need to retrieve transcripts from more than 90 days ago please reach out to our Support team at support@assemblyai.com.<br/>
/// **Pagination**<br/>
/// This endpoint returns paginated results. The response includes a `page_details` object with the following properties:<br/>
/// - `page_details.limit` - Maximum number of transcripts per page.<br/>
/// - `page_details.result_count` - Total number of transcripts returned on the current page.<br/>
/// - `page_details.current_url` - URL to the current page.<br/>
/// - `page_details.prev_url` - URL to the previous page of older transcripts.<br/>
/// - `page_details.next_url` - URL to the next page of newer transcripts.
/// </summary>
/// <param name="limit">
/// Default Value: 10
Expand Down
9 changes: 9 additions & 0 deletions src/libs/AssemblyAI/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,15 @@ paths:
Transcripts are sorted from newest to oldest and can be retrieved for the last 90 days of usage. The previous URL always points to a page with older transcripts.

If you need to retrieve transcripts from more than 90 days ago please reach out to our Support team at support@assemblyai.com.

**Pagination**

This endpoint returns paginated results. The response includes a `page_details` object with the following properties:
- `page_details.limit` - Maximum number of transcripts per page.
- `page_details.result_count` - Total number of transcripts returned on the current page.
- `page_details.current_url` - URL to the current page.
- `page_details.prev_url` - URL to the previous page of older transcripts.
- `page_details.next_url` - URL to the next page of newer transcripts.
parameters:
- name: limit
x-label: Limit
Expand Down
Loading