# \DomainControllerApi
All URIs are relative to https://api.mailslurp.com
Method | HTTP request | Description |
---|---|---|
add_domain_wildcard_catch_all | Post /domains/{id}/wildcard | Add catch all wild card inbox to domain |
create_domain | Post /domains | Create Domain |
delete_domain | Delete /domains/{id} | Delete a domain |
get_domain | Get /domains/{id} | Get a domain |
get_domains | Get /domains | Get domains |
update_domain | Put /domains/{id} | Update a domain |
# add_domain_wildcard_catch_all
crate::models::DomainDto add_domain_wildcard_catch_all(id) Add catch all wild card inbox to domain
Add a catch all inbox to a domain so that any emails sent to it that cannot be matched will be sent to the catch all inbox generated
# Parameters
Name | Type | Description | Required | Notes |
---|---|---|---|---|
id | String | id | [required] |
# Return type
# Authorization
# HTTP request headers
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
# create_domain
crate::models::DomainDto create_domain(domain_options) Create Domain
Link a domain that you own with MailSlurp so you can create email addresses using it. Endpoint returns DNS records used for validation. You must add these verification records to your host provider's DNS setup to verify the domain.
# Parameters
Name | Type | Description | Required | Notes |
---|---|---|---|---|
domain_options | CreateDomainOptions | domainOptions | [required] |
# Return type
# Authorization
# HTTP request headers
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
# delete_domain
Vec<String> delete_domain(id) Delete a domain
Delete a domain. This will disable any existing inboxes that use this domain.
# Parameters
Name | Type | Description | Required | Notes |
---|---|---|---|---|
id | String | id | [required] |
# Return type
Vec<String>
# Authorization
# HTTP request headers
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
# get_domain
crate::models::DomainDto get_domain(id) Get a domain
Returns domain verification status and tokens for a given domain
# Parameters
Name | Type | Description | Required | Notes |
---|---|---|---|---|
id | String | id | [required] |
# Return type
# Authorization
# HTTP request headers
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
# get_domains
Veccrate::models::DomainPreview get_domains() Get domains
List all custom domains you have created
# Parameters
This endpoint does not need any parameter.
# Return type
Veccrate::models::DomainPreview
# Authorization
# HTTP request headers
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
# update_domain
crate::models::DomainDto update_domain(id, update_domain_dto) Update a domain
Update values on a domain. Note you cannot change the domain name as it is immutable. Recreate the domain if you need to alter this.
# Parameters
Name | Type | Description | Required | Notes |
---|---|---|---|---|
id | String | id | [required] | |
update_domain_dto | UpdateDomainOptions | updateDomainDto | [required] |
# Return type
# Authorization
# HTTP request headers
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]