DomainDto
Properties
Name | Type | Description | Notes |
Id | String | | |
UserId | String | | |
Domain | String | Custom domain name | |
VerificationToken | String | Verification tokens | |
DkimTokens | String[] | Unique token DKIM tokens | |
IsVerified | Boolean | Whether domain has been verified or not. If the domain is not verified after 72 hours there is most likely an issue with the domains DNS records. | |
DomainNameRecords | DomainNameRecord[] | List of DNS domain name records (C, MX, TXT) etc that you must add to the DNS server associated with your domain provider. | |
CatchAllInboxId | String | The optional catch all inbox that will receive emails sent to the domain that cannot be matched. | [optional] |
CreatedAt | System.DateTime | | |
UpdatedAt | System.DateTime | | |
DomainType | String | Type of domain. Dictates type of inbox that can be created with domain. HTTP means inboxes are processed using SES while SMTP inboxes use a custom SMTP mail server. SMTP does not support sending so use HTTP for sending emails. | |
Examples
$DomainDto = Initialize-maislurp-client-powershellDomainDto -Id null `
-UserId null `
-Domain null `
-VerificationToken null `
-DkimTokens null `
-IsVerified null `
-DomainNameRecords null `
-CatchAllInboxId null `
-CreatedAt null `
-UpdatedAt null `
-DomainType null
- Convert the resource to JSON
$DomainDto | ConvertTo-JSON
[Back to Model list] [Back to API list] [Back to ]