Note
All URIs are relative to https://api.fastly.com
| Method | HTTP request | Description |
|---|---|---|
| disable_product_domain_research | DELETE /enabled-products/v1/domain_research | Disable product |
| enable_domain_research | PUT /enabled-products/v1/domain_research | Enable product |
| get_domain_research | GET /enabled-products/v1/domain_research | Get product enablement status |
Disable the Domain Research product.
let cfg = &Configuration::default();
let params = DisableProductDomainResearchParams {
// parameters
};
disable_product_domain_research(cfg, params)This endpoint does not need any parameter.
(empty response body)
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to README]
Enable the Domain Research product.
let cfg = &Configuration::default();
let params = EnableDomainResearchParams {
// parameters
};
enable_domain_research(cfg, params)This endpoint does not need any parameter.
crate::models::DomainResearchResponseBodyEnable
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to README]
Get the enablement status of the Domain Research product.
let cfg = &Configuration::default();
let params = GetDomainResearchParams {
// parameters
};
get_domain_research(cfg, params)This endpoint does not need any parameter.
crate::models::DomainResearchResponseBodyEnable
- Content-Type: Not defined
- Accept: application/json