pub struct SpamReportsApi {
pub client: Client,
}
Fields§
§client: Client
Implementations§
Source§impl SpamReportsApi
impl SpamReportsApi
Sourcepub async fn get_suppression_spam_reports(
&self,
start_time: i64,
end_time: i64,
limit: i64,
offset: i64,
) -> Result<Response<Vec<SpamReportsResponse>>, ClientError>
pub async fn get_suppression_spam_reports( &self, start_time: i64, end_time: i64, limit: i64, offset: i64, ) -> Result<Response<Vec<SpamReportsResponse>>, ClientError>
Retrieve all spam reports.
This function performs a GET
to the /suppression/spam_reports
endpoint.
This endpoint allows you to retrieve all spam reports.
Parameters:
start_time: i64
– The start of the time range when a spam report was created (inclusive). This is a unix timestamp.end_time: i64
– The end of the time range when a spam report was created (inclusive). This is a unix timestamp.limit: i64
– Limit the number of results to be displayed per page.offset: i64
– Paging offset. The point in the list to begin displaying results.on_behalf_of: &str
– The license key provided with your New Relic account.
Sourcepub async fn get_all_suppression_spam_reports(
&self,
start_time: i64,
end_time: i64,
offset: i64,
) -> Result<Response<Vec<SpamReportsResponse>>, ClientError>
pub async fn get_all_suppression_spam_reports( &self, start_time: i64, end_time: i64, offset: i64, ) -> Result<Response<Vec<SpamReportsResponse>>, ClientError>
Retrieve all spam reports.
This function performs a GET
to the /suppression/spam_reports
endpoint.
As opposed to get_suppression_spam_reports
, this function returns all the pages of the request at once.
This endpoint allows you to retrieve all spam reports.
Sourcepub async fn delete_suppression_spam_reports(
&self,
body: &DeleteSuppressionBlocksRequest,
) -> Result<Response<Help>, ClientError>
pub async fn delete_suppression_spam_reports( &self, body: &DeleteSuppressionBlocksRequest, ) -> Result<Response<Help>, ClientError>
Delete spam reports.
This function performs a DELETE
to the /suppression/spam_reports
endpoint.
This endpoint allows you to delete your spam reports.
Deleting a spam report will remove the suppression, meaning email will once again be sent to the previously suppressed address. This should be avoided unless a recipient indicates they wish to receive email from you again. You can use our bypass filters to deliver messages to otherwise suppressed addresses when exceptions are required.
There are two options for deleting spam reports:
- You can delete all spam reports by setting the
delete_all
field totrue
in the request body. - You can delete a list of select spam reports by specifying the email addresses in the
emails
array of the request body.
Parameters:
on_behalf_of: &str
– The license key provided with your New Relic account.
Sourcepub async fn get_suppression_spam_reports_email(
&self,
email: &str,
) -> Result<Response<Vec<SpamReportsResponse>>, ClientError>
pub async fn get_suppression_spam_reports_email( &self, email: &str, ) -> Result<Response<Vec<SpamReportsResponse>>, ClientError>
Retrieve a specific spam report.
This function performs a GET
to the /suppression/spam_reports/{email}
endpoint.
This endpoint allows you to retrieve a specific spam report by email address.
Parameters:
on_behalf_of: &str
– The license key provided with your New Relic account.
Sourcepub async fn get_all_suppression_spam_reports_email(
&self,
email: &str,
) -> Result<Response<Vec<SpamReportsResponse>>, ClientError>
pub async fn get_all_suppression_spam_reports_email( &self, email: &str, ) -> Result<Response<Vec<SpamReportsResponse>>, ClientError>
Retrieve a specific spam report.
This function performs a GET
to the /suppression/spam_reports/{email}
endpoint.
As opposed to get_suppression_spam_reports_email
, this function returns all the pages of the request at once.
This endpoint allows you to retrieve a specific spam report by email address.
Sourcepub async fn delete_suppression_spam_reports_email(
&self,
email: &str,
) -> Result<Response<Help>, ClientError>
pub async fn delete_suppression_spam_reports_email( &self, email: &str, ) -> Result<Response<Help>, ClientError>
Delete a specific spam report.
This function performs a DELETE
to the /suppression/spam_reports/{email}
endpoint.
This endpoint allows you to delete a specific spam report by email address.
Deleting a spam report will remove the suppression, meaning email will once again be sent to the previously suppressed address. This should be avoided unless a recipient indicates they wish to receive email from you again. You can use our bypass filters to deliver messages to otherwise suppressed addresses when exceptions are required.
Parameters:
on_behalf_of: &str
– The license key provided with your New Relic account.