public virtual void DeleteKnowledgeBase(Guid knowledgeBaseId) { RepositoryClient.SendJsonDelete(ApiKeys.QnA, $"{ApiKeys.QnAEndpoint}{knowledgeBaseId}"); }
public virtual void DeleteProfile(Guid id) { var response = RepositoryClient.SendJsonDelete(ApiKeys.SpeakerRecognition, $"{ApiKeys.SpeakerRecognition}identificationProfiles/{id.ToString("D")}"); return; }
public virtual void DeleteImage(string listId, string imageId) { RepositoryClient.SendJsonDelete(ApiKeys.ContentModerator, $"{ApiKeys.ContentModeratorEndpoint}{listUrl}{listId}/images/{imageId}"); }
public virtual void DeleteFaceList(string faceListId) { var response = RepositoryClient.SendJsonDelete(ApiKeys.Face, $"{ApiKeys.FaceEndpoint}facelists/{faceListId}"); return; }
public void DeleteLogs() { var response = RepositoryClient.SendJsonDelete(ApiKeys.Personalizer, $"{ApiKeys.PersonalizerEndpoint}logs"); }
public virtual void DeletePersonGroup(string personGroupId) { var response = RepositoryClient.SendJsonDelete(ApiKeys.Face, $"{ApiKeys.FaceEndpoint}persongroups{personGroupId}"); return; }
public virtual void CancelOperation(string operationId) { RepositoryClient.SendJsonDelete(ApiKeys.Recommendations, $"{ApiKeys.RecommendationsEndpoint}{operationsUrl}?id={operationId}"); }