TrustedEmailDomains
The trusted email domains in the environment.
Table-Specific Information
We recommend using the built-in Client Application Developer role to read and write data for this table.
SELECT
Reading data from this table requires Read Email Domains/notifications:read:emailDomain permission.The component uses the PingOne Platform API to process WHERE clause conditions built with the following columns and operators.
- Id supports the following operators: =.
All other filters are processed client-side within the component.
For example, the following queries are processed server-side:
SELECT * FROM Administrators.TrustedEmailDomains WHERE Id = '8bfe1f41-8dd3-4847-94ab-14f9344d8a81';
INSERT
Creating data in this table requires Create Email Domains/notifications:create:emailDomain permission.The DomainName column is required to create a trusted email domain.
Refer to the query example below:
INSERT INTO Administrators.TrustedEmailDomains (DomainName) VALUES ('example.com');
DELETE
Deleting data from this table requires Delete Email Domains/notifications:delete:emailDomain permission.Refer to the query example below:
DELETE FROM Administrators.TrustedEmailDomains WHERE Id = 'ea6a22d3-e616-4fc7-835b-e898f5e49a96'
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
The trusted email domain identifier (UUID). | |
| EnvironmentId [KEY] | String | True |
The environment resource’s unique identifier associated with the resource. | |
| DomainName | String | False |
The domain name of the trusted email domain (e.g. 'example.com'). | |
| CreatedAt | Datetime | True |
The datetime of record creation. | |
| UpdatedAt | Datetime | True |
The datetime when this record was last updated |