v1ConvaiSecretsGet method

Future<Response<GetWorkspaceSecretsResponseModel>> v1ConvaiSecretsGet({
  1. String? xiApiKey,
})

Get Convai Workspace Secrets @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

Future<chopper.Response<GetWorkspaceSecretsResponseModel>>
v1ConvaiSecretsGet({String? xiApiKey}) {
  generatedMapping.putIfAbsent(
    GetWorkspaceSecretsResponseModel,
    () => GetWorkspaceSecretsResponseModel.fromJsonFactory,
  );

  return _v1ConvaiSecretsGet(xiApiKey: xiApiKey?.toString());
}