Skip to content

Latest commit

 

History

History
124 lines (86 loc) · 2.9 KB

ProductBotManagementApi.md

File metadata and controls

124 lines (86 loc) · 2.9 KB

Fastly.ProductBotManagementApi

const apiInstance = new Fastly.ProductBotManagementApi();

Methods

Note

All URIs are relative to https://api.fastly.com

Method HTTP request Description
disableProductBotManagement DELETE /enabled-products/v1/bot_management/services/{service_id} Disable product
enableProductBotManagement PUT /enabled-products/v1/bot_management/services/{service_id} Enable product
getProductBotManagement GET /enabled-products/v1/bot_management/services/{service_id} Get product enablement status

disableProductBotManagement

disableProductBotManagement({ service_id })

Disable the Bot Management product on a service.

Example

const options = {
  service_id: "service_id_example", // required
};

apiInstance.disableProductBotManagement(options)
  .then(() => {
    console.log('API called successfully.');
  })
  .catch((error) => {
    console.error(error);
  });

Options

Name Type Description Notes
service_id String Alphanumeric string identifying the service.

Return type

null (empty response body)

enableProductBotManagement

enableProductBotManagement({ service_id })

Enable the Bot Management product on a service.

Example

const options = {
  service_id: "service_id_example", // required
};

apiInstance.enableProductBotManagement(options)
  .then((data) => {
    console.log(data, "API called successfully.");
  })
  .catch((error) => {
    console.error(error);
  });

Options

Name Type Description Notes
service_id String Alphanumeric string identifying the service.

Return type

BotManagementResponseBodyEnable

getProductBotManagement

getProductBotManagement({ service_id })

Get the enablement status of the Bot Management product on a service.

Example

const options = {
  service_id: "service_id_example", // required
};

apiInstance.getProductBotManagement(options)
  .then((data) => {
    console.log(data, "API called successfully.");
  })
  .catch((error) => {
    console.error(error);
  });

Options

Name Type Description Notes
service_id String Alphanumeric string identifying the service.

Return type

BotManagementResponseBodyEnable

[Back to top] [Back to API list] [Back to README]