You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The GET `/v1/transcripts/{id}` endpoint previously returned transcript metadata without formatted transcript content. Adding the `transcript_format` parameter is fully backward compatible:
322
-
323
-
- Without the parameter, the default `text` format is returned
324
-
- All existing response fields remain unchanged
325
-
- The `transcript_format` and `transcript` fields are new additions
326
-
327
-
### Upgrading Client Code
328
-
329
-
To use the new format feature:
330
-
331
-
1. Add `transcript_format` query parameter to your requests
332
-
2. Handle the discriminated union response type
333
-
3. Access the `transcript` field based on the format
334
-
335
-
Existing code that doesn't use these new fields will continue to work unchanged.
0 commit comments