Skip to content
Start here

Addresses

List destination addresses
email_routing.addresses.list(AddressListParams**kwargs) -> SyncV4PagePaginationArray[Address]
GET/accounts/{account_id}/email/routing/addresses
Get a destination address
email_routing.addresses.get(strdestination_address_identifier, AddressGetParams**kwargs) -> Address
GET/accounts/{account_id}/email/routing/addresses/{destination_address_identifier}
Create a destination address
email_routing.addresses.create(AddressCreateParams**kwargs) -> Address
POST/accounts/{account_id}/email/routing/addresses
Delete destination address
email_routing.addresses.delete(strdestination_address_identifier, AddressDeleteParams**kwargs) -> Address
DELETE/accounts/{account_id}/email/routing/addresses/{destination_address_identifier}
ModelsExpand Collapse
class Address:
id: Optional[str]

Destination address identifier.

maxLength32
created: Optional[datetime]

The date and time the destination address has been created.

formatdate-time
email: Optional[str]

The contact email address of the user.

maxLength90
modified: Optional[datetime]

The date and time the destination address was last modified.

formatdate-time
Deprecatedtag: Optional[str]

Destination address tag. (Deprecated, replaced by destination address identifier)

maxLength32
verified: Optional[datetime]

The date and time the destination address has been verified. Null means not verified yet.

formatdate-time