domains
CreateDomainRequest
Bases: TypedDict
Request body for registering a domain.
Source code in nylas/models/domains.py
33 34 35 36 37 | |
Domain
dataclass
A domain registered for Transactional Send or Nylas Inbound.
Source code in nylas/models/domains.py
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | |
DomainVerificationAttempt
dataclass
DNS verification attempt or required records for a verification type.
Source code in nylas/models/domains.py
84 85 86 87 88 89 90 91 92 93 94 95 96 97 | |
DomainVerificationDetails
dataclass
Response data from get domain info or verify domain endpoints.
Source code in nylas/models/domains.py
100 101 102 103 104 105 106 107 108 109 110 111 | |
DomainVerificationOptions
Bases: TypedDict
Options for domain verification operations.
Source code in nylas/models/domains.py
15 16 17 18 | |
GetDomainInfoRequest
Bases: TypedDict
Request body for retrieving DNS records for a verification type.
Source code in nylas/models/domains.py
46 47 48 49 50 | |
ListDomainsQueryParams
Bases: ListQueryParams
Query parameters for listing domains.
Attributes:
| Name | Type | Description |
|---|---|---|
limit |
Maximum number of objects to return. |
|
page_token |
Cursor for the next page (from |
Source code in nylas/models/domains.py
21 22 23 24 25 26 27 28 29 30 | |
UpdateDomainRequest
Bases: TypedDict
Request body for updating a domain (currently only name is supported).
Source code in nylas/models/domains.py
40 41 42 43 | |
VerifyDomainRequest
Bases: TypedDict
Request body for triggering DNS verification.
Source code in nylas/models/domains.py
53 54 55 56 57 | |