POST
/
v1
/
chat
/
integrations
/
configure
curl --request POST \
  --url https://api.botpress.cloud/v1/chat/integrations/configure \
  --header 'Content-Type: application/json' \
  --data '{
  "identifier": "<string>",
  "scheduleRegisterCall": "hourly",
  "sandboxIdentifiers": {}
}'
{}

Body

application/json
Configuration of the integration
identifier
string

Unique identifier of the integration that was installed on the bot

Maximum length: 200
scheduleRegisterCall
enum<string>

Recurring schedule on which register() will be called on the integration

Available options:
hourly,
daily,
weekly,
bi-weekly,
monthly,
bi-monthly,
quarterly,
yearly
sandboxIdentifiers
object | null

Sandbox identifiers for the integration. Setting this to null will remove all sandbox identifiers. Setting an individual sandbox identifier to null will remove that sandbox identifier. This is an experimental feature meant to be used by specific integrations.

Response

200
application/json
Configuration of the integration

The response is of type object.