Skip to main content
  • Products
    • Overview
    • Features
    • Screen Capture
    • Agent evaluation / score cards
    • Speech Analytics
    • Recording Announcement
    • Videos
    • Online demo
    • Quote
    • Download
  • Solutions
    • Businesses
    • Contact centers
    • Financial institutions
    • Healthcare
    • MiFID II compliance
    • Telecom service providers
    • Traders
  • Compatibility
    • AudioCodes
    • Avaya
    • BroadSoft
    • Cisco
    • Genband
    • IPC
    • Metaswitch
    • Oracle AcmePacket
    • SIPREC recording
    • Sonus
  • Documentation
    • User Guide
    • Administration Guide
    • Developer Guide
    • MiaRec v.3 (old) documentation
    • Resource library
    • Videos
  • Support
    • Submit a request
    • Check your existing requests
    • TeamViewer QuickSupport
  • Blog
  • Company
    • About MiaRec
    • Contact us
    • Our clients
    • Become a partner
    • News
    • Careers
    • Events

MiaRec SOAP API

  • MiaRec SOAP API Programmer's Guide
    • Gettings Started
      • Settings up the development environment
        • Obtaining the WSDL document and generating the stubs
      • Request and response framework
      • Learning from sample code
    • MiaRec Web Services
      • Intended Audience
      • Overview
    • Writing a Client Application
      • Setup
        • The HTTP header
        • The SOAP header
        • Setting the URL of the service to be accessed
      • Objects
        • RecordingFilter
          • RecordingFilterCustomParameter
      • Methods
        • getVersion
        • reloadConfig
        • recordingFilterLoad
        • recordingFilterLoadAll
        • recordingFilterSave
        • recordingFilterValidate
        • recordingFilterDelete
      • Exceptions
        • InvalidParameterException
        • InvalidSyntaxException
        • NotFoundException
    • Debugging
Home › MiaRec SOAP API Programmer's Guide › Writing a Client Application › Methods ›
 

recordingFilterValidate

The recordingFilterValidate method checks if recording filter's options are valid (for example, if condition expression has valid syntax).

 

Syntax (in C#)

bool recordingFilterSave(
    RecordingFilter filter
);

 

 

Parameters

Name of parameterTypeDescription
filterRecordingFilterRecording filter object, which will be validated

 

 

Return Value

If the function succeds, the return boolean TRUE value.

If the function fails, then one of folloiwng SOAP Exceptions is thrown.

 

InvalidSyntaxException
Syntax of condition is not valid
InvalidParameterExceptionOne of filter options is invalid. For example, name is empty or contains invalid character.

 

 

Example (in C#)

try
{
    MiaRec::RecordingFilter filter = new MiaRec::RecordingFilter();

    filter.name = "filter2-";
    filter.priority = 0;
    filter.condition = "caller-number LIKE '200%' OR callee-number LIKE '200%'";
    filter.action = "record";

    filter.customParameters = new MiaRec::RecordingFilterCustomParameter[2];
    filter.customParameters[0].name =  "company-name";
    filter.customParameters[0].value = "Google";
    filter.customParameters[1].name =  "person-name";
    filter.customParameters[1].value = "John Smith";
    
    service.recordingFilterValidate(filter);
}
catch (FaultException<MiaRec::InvalidParameterException> ex)
{
    Console.WriteLine("Failed: " + ex.Detail.Description);
}
catch (FaultException<MiaRec::InvalidSyntaxException> ex)
{
    Console.WriteLine("Failed: " + ex.Detail.Description);
}
catch (Exception ex)
{
    Console.WriteLine(ex.Message)
}

 

 

See Also

  • Method recordingFilterSave
  • Object RecordingFilter

 

‹ recordingFilterSave up recordingFilterDelete ›
  • Printer-friendly version
  • Login to post comments
MiaRec, Inc. © 2020. All Rights Reserved. | Terms of Use | Privacy Statement | Cancellation Policy