domains
CreateDomainRequest
Bases: TypedDict
Request body for registering a domain.
Source code in nylas/models/domains.py
32 33 34 35 36 | |
Domain
dataclass
A domain registered for Transactional Send or Nylas Inbound.
Source code in nylas/models/domains.py
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 | |
DomainVerificationAttempt
dataclass
DNS verification attempt or required records for a verification type.
Source code in nylas/models/domains.py
83 84 85 86 87 88 89 90 91 92 93 94 95 96 | |
DomainVerificationDetails
dataclass
Response data from get domain info or verify domain endpoints.
Source code in nylas/models/domains.py
99 100 101 102 103 104 105 106 107 108 109 110 | |
DomainVerificationOptions
Bases: TypedDict
Options for domain verification operations.
Source code in nylas/models/domains.py
14 15 16 17 | |
GetDomainInfoRequest
Bases: TypedDict
Request body for retrieving DNS records for a verification type.
Source code in nylas/models/domains.py
45 46 47 48 49 | |
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
20 21 22 23 24 25 26 27 28 29 | |
UpdateDomainRequest
Bases: TypedDict
Request body for updating a domain (currently only name is supported).
Source code in nylas/models/domains.py
39 40 41 42 | |
VerifyDomainRequest
Bases: TypedDict
Request body for triggering DNS verification.
Source code in nylas/models/domains.py
52 53 54 55 56 | |