domains
CreateDomainRequest
Bases: TypedDict
Request body for registering a domain.
Source code in nylas/models/domains.py
24 25 26 27 28 | |
Domain
dataclass
A domain registered for Transactional Send or Nylas Inbound.
Source code in nylas/models/domains.py
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | |
DomainVerificationAttempt
dataclass
DNS verification attempt or required records for a verification type.
Source code in nylas/models/domains.py
73 74 75 76 77 78 79 80 81 82 83 84 85 86 | |
DomainVerificationDetails
dataclass
Response data from get domain info or verify domain endpoints.
Source code in nylas/models/domains.py
89 90 91 92 93 94 95 96 97 98 99 100 | |
GetDomainInfoRequest
Bases: TypedDict
Request body for retrieving DNS records for a verification type.
Source code in nylas/models/domains.py
37 38 39 40 | |
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
12 13 14 15 16 17 18 19 20 21 | |
UpdateDomainRequest
Bases: TypedDict
Request body for updating a domain (currently only name is supported).
Source code in nylas/models/domains.py
31 32 33 34 | |
VerifyDomainRequest
Bases: TypedDict
Request body for triggering DNS verification.
Source code in nylas/models/domains.py
43 44 45 46 | |