v1ConvaiConversationGetSignedUrlGet2 method
Get Signed Url @param agent_id The id of the agent you're taking the action on. @param xi-api-key Your API key. This is required by most endpoints to access our API programatically. You can view your xi-api-key using the 'Profile' tab on the website.
Implementation
@deprecated
Future<chopper.Response<ConversationSignedUrlResponseModel>>
v1ConvaiConversationGetSignedUrlGet2({
required String? agentId,
String? xiApiKey,
}) {
generatedMapping.putIfAbsent(
ConversationSignedUrlResponseModel,
() => ConversationSignedUrlResponseModel.fromJsonFactory,
);
return _v1ConvaiConversationGetSignedUrlGet(
agentId: agentId,
xiApiKey: xiApiKey?.toString(),
);
}