Struct sendgrid_api::spam_reports_api::SpamReportsApi[][src]

pub struct SpamReportsApi {
    pub client: Client,
}

Fields

client: Client

Implementations

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.

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.

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:

  1. You can delete all spam reports by setting the delete_all field to true in the request body.
  2. 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.

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.

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.

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.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.