Skip to content

Latest commit

 

History

History
84 lines (53 loc) · 2.89 KB

File metadata and controls

84 lines (53 loc) · 2.89 KB

\TranscriptsAPI

All URIs are relative to https://api.attio.com

Method HTTP request Description
V2MeetingsMeetingIdCallRecordingsCallRecordingIdTranscriptGet Get /v2/meetings/{meeting_id}/call_recordings/{call_recording_id}/transcript Get call transcript

V2MeetingsMeetingIdCallRecordingsCallRecordingIdTranscriptGet

V2MeetingsMeetingIdCallRecordingsCallRecordingIdTranscriptGet200Response V2MeetingsMeetingIdCallRecordingsCallRecordingIdTranscriptGet(ctx, meetingId, callRecordingId).Cursor(cursor).Execute()

Get call transcript

Example

package main

import (
	"context"
	"fmt"
	"os"
	libattio "github.com/sid6mathur/libattio"
)

func main() {
	meetingId := "cb59ab17-ad15-460c-a126-0715617c0853" // string | 
	callRecordingId := "e8f2a3b7-9b4d-4c5e-8a1f-3d7b2c5e8f9a" // string | 
	cursor := "eyJkZXNjcmlwdGlvbiI6ICJ0aGlzIGlzIGEgY3Vyc29yIn0=.eM56CGbqZ6G1NHiJchTIkH4vKDr" // string |  (optional)

	configuration := libattio.NewConfiguration()
	apiClient := libattio.NewAPIClient(configuration)
	resp, r, err := apiClient.TranscriptsAPI.V2MeetingsMeetingIdCallRecordingsCallRecordingIdTranscriptGet(context.Background(), meetingId, callRecordingId).Cursor(cursor).Execute()
	if err != nil {
		fmt.Fprintf(os.Stderr, "Error when calling `TranscriptsAPI.V2MeetingsMeetingIdCallRecordingsCallRecordingIdTranscriptGet``: %v\n", err)
		fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
	}
	// response from `V2MeetingsMeetingIdCallRecordingsCallRecordingIdTranscriptGet`: V2MeetingsMeetingIdCallRecordingsCallRecordingIdTranscriptGet200Response
	fmt.Fprintf(os.Stdout, "Response from `TranscriptsAPI.V2MeetingsMeetingIdCallRecordingsCallRecordingIdTranscriptGet`: %v\n", resp)
}

Path Parameters

Name Type Description Notes
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
meetingId string
callRecordingId string

Other Parameters

Other parameters are passed through a pointer to a apiV2MeetingsMeetingIdCallRecordingsCallRecordingIdTranscriptGetRequest struct via the builder pattern

Name Type Description Notes

cursor | string | |

Return type

V2MeetingsMeetingIdCallRecordingsCallRecordingIdTranscriptGet200Response

Authorization

oauth2

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]