Email Customization

The Email Customization API provides operations to modify the email bounce list for your Okta org.

Remove bounced emails
OAuth 2.0: okta.orgs.manage

Removes emails from an email service bounce list.

The emails submitted in this operation are removed from the bounce list by an asynchronous job. Any email address that passes validation is accepted for the removal process, even if there are other email addresses in the request that failed validation.

Note: If there are validation errors for all email addresses, a 200 OK HTTP status is still returned.

Request
Request Body schema: application/json
emailAddresses
Array of strings

A list of email addresses to remove from the email-service bounce list

Responses
200

OK

400

Bad Request

403

Forbidden

429

Too Many Requests

post/api/v1/org/email/bounces/remove-list
Request samples
application/json
{
  • "emailAddresses": [
    • "name@company.com",
    • "unknown.email@okta.com",
    • "name@okta@com"
    ]
}
Response samples
application/json
{
  • "errors": [
    • {
      },
    • {
      }
    ]
}