getEmailContentMatchWithHttpInfo method
- String emailId,
- ContentMatchOptions contentMatchOptions
Get email content regex pattern match results. Runs regex against email body and returns match groups.
Return the matches for a given Java style regex pattern. Do not include the typical /
at start or end of regex in some languages. Given an example your code is: 12345
the pattern to extract match looks like code is: (\\d{6})
. This will return an array of matches with the first matching the entire pattern and the subsequent matching the groups: ['code is: 123456', '123456']
See https://docs.oracle.com/javase/8/docs/api/java/util/regex/Pattern.html for more information of available patterns.
Note: This method returns the HTTP Response
.
Parameters:
-
String emailId (required): ID of email to match against
-
ContentMatchOptions contentMatchOptions (required):
Implementation
Future<Response> getEmailContentMatchWithHttpInfo(String emailId, ContentMatchOptions contentMatchOptions,) async {
// ignore: prefer_const_declarations
final path = r'/emails/{emailId}/contentMatch'
.replaceAll('{emailId}', emailId);
// ignore: prefer_final_locals
Object? postBody = contentMatchOptions;
final queryParams = <QueryParam>[];
final headerParams = <String, String>{};
final formParams = <String, String>{};
const contentTypes = <String>['application/json'];
return apiClient.invokeAPI(
path,
'POST',
queryParams,
postBody,
headerParams,
formParams,
contentTypes.isEmpty ? null : contentTypes.first,
);
}