Integrations

Overview

This page contains the APIs that are used for retrieving and updating integrations. An integration is a third party API that has been integrated into FusionAuth. These APIs are used to enable and configure these third party integration.

This API underwent breaking changes in version 1.26. Twilio integrations are now managed by the

Messengers API.

Retrieve Integrations

This API is used to retrieve integrations.

Request

API Key Authentication
Retrieve Integrations
GET /api/integration

Response

The response for this API contains the Integrations.

Response Codes
Code Description
200 The request was successful. The response will contain a JSON body.
401 You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication.
500 There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty.
503 The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body.

Response Body

integration.cleanspeak.apiKeyString

The API key that is used when calling CleanSpeak for moderation.

integration.cleanspeak.enabledBoolean

True if CleanSpeak integration is enabled.

integration.cleanspeak.urlString

The URL of the CleanSpeak WebService service (i.e. http://localhost:8001/).

integration.cleanspeak.usernameModeration.applicationIdUUID

The Id of the CleanSpeak Application where usernames are sent for moderation.

integration.cleanspeak.usernameModeration.enabledBoolean

True if CleanSpeak username moderation is enabled.

integration.kafka.defaultTopicString

The name of the Kafka topic to send messages.

integration.kafka.enabledBoolean

True if the Kafka integration is enabled.

integration.kafka.producerMap<String, String>

String key value pairs to be used when building the Kafka Producer.

integration.twilio.accountSIDStringDEPRECATED

The Twilio Account ID to use when connecting to the Twilio API. This can be found in your Twilio dashboard.

Removed in 1.26.0

In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.

integration.twilio.authTokenStringDEPRECATED

The Twilio Auth Token to use when connecting to the Twilio API. This can be found in your Twilio dashboard.

Removed in 1.26.0

In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.

integration.twilio.enabledBooleanDEPRECATED

True if the Twilio integration is enabled.

Removed in 1.26.0

In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.

integration.twilio.fromPhoneNumberStringDEPRECATED

The configured Twilio phone number that will be used to send messages. This can be found in your Twilio dashboard.

Removed in 1.26.0

In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.

integration.twilio.messagingServiceSidStringDEPRECATED

The Twilio message service Id, this is used when using Twilio Copilot to load balance between numbers. This can be found in your Twilio dashboard.

When using the Twilio Messaging Services Id, you may omit the fromPhoneNumber field.

Removed in 1.26.0

In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.

Example Response JSON
{
  "integrations": {
    "cleanspeak": {
      "apiKey": "97f3d194-ef95-480a-9ee4-eea7dbdc450a",
      "enabled": true,
      "url": "http://localhost:8001",
      "usernameModeration": {
        "applicationId": "27a7e845-79ec-4b24-a36d-66a224055395",
        "enabled": true
      }
    },
    "kafka": {
      "defaultTopic": "FusionAuth",
      "enabled": true,
      "producer": {
        "request.timeout.ms": "2000",
        "bootstrap.servers": "localhost:9092",
        "max.block.ms": "5000"
      }
    },
    "twilio": {
      "accountSID": "_superSecreteAccountSID",
      "authToken": "_superSecretAuthToken",
      "enabled": true,
      "fromPhoneNumber": "555-555-5555",
      "url": "https://api.twilio.com"
    }
  }
}

Update Integrations

This API is used to update an existing Integration.

You must specify the Id of the Integration you are updating on the URI. No Id is required to update this object.

You must specify all of the properties of the Integration when calling this API with the PUT HTTP method. When used with PUT, this API doesn’t merge the existing Integration and your new data. It replaces the existing Integration with your new data.

Utilize the PATCH HTTP method to send specific changes to merge into an existing Integration.

Request

API Key Authentication
Update Integrations
PUT /api/integration
PATCH /api/integration

When using the PATCH method, you can either use the same request body documentation that is provided for the PUT request for backward compatibility. Or you may use either JSON Patch/RFC 6902] or JSON Merge Patch/RFC 7396. See the PATCH documentation for more information.

When using the PATCH method with a Content-Type of application/json the provided request parameters will be merged into the existing object, this means all parameters are optional when using the PATCH method and you only provide the values you want changed. A null value can be used to remove a value. Patching an Array will result in all values from the new list being appended to the existing list, this is a known limitation to the current implementation of PATCH.

Request Body

integration.cleanSpeakConfiguration.apiKeyString

The API key that is used when calling CleanSpeak for moderation.

integration.cleanSpeakConfiguration.enabledBooleanDefaults to false

True if CleanSpeak integration is enabled.

integration.cleanSpeakConfiguration.urlString

The URL of the CleanSpeak WebService service (i.e. http://localhost:8001/). Required when the CleanSpeak integration is enabled.

integration.cleanSpeakConfiguration.usernameModeration.applicationIdUUID

The Id of the CleanSpeak Application where usernames are sent for moderation.

integration.cleanSpeakConfiguration.usernameModeration.enabledBooleanDefaults to false

True if CleanSpeak username moderation is enabled.

integration.kafka.defaultTopicString

The name of the Kafka topic to send messages. Required when the Kafka integration is enabled.

integration.kafka.enabledBooleanDefaults to false

True if the Kafka integration is enabled.

integration.kafka.producerMap<String, String>

String key value pairs to be used when building the Kafka Producer.

integration.twilio.accountSIDStringDEPRECATED

The Twilio Account ID to use when connecting to the Twilio API. This can be found in your Twilio dashboard. Required when the Twilio integration is enabled.

Removed in 1.26.0

In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.

integration.twilio.authTokenStringDEPRECATED

The Twilio Auth Token to use when connecting to the Twilio API. This can be found in your Twilio dashboard. Required when the Twilio integration is enabled.

Removed in 1.26.0

In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.

integration.twilio.enabledBooleanDefaults to falseDEPRECATED

True if the Twilio integration is enabled.

Removed in 1.26.0

In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.

integration.twilio.fromPhoneNumberStringDEPRECATED

The configured Twilio phone number that will be used to send messages. This can be found in your Twilio dashboard.

Removed in 1.26.0

In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.

integration.twilio.messagingServiceSidStringDEPRECATED

The Twilio message service Id, this is used when using Twilio Copilot to load balance between numbers. This can be found in your Twilio dashboard.

When using the Twilio Messaging Services Id, you may omit the fromPhoneNumber field.

Removed in 1.26.0

In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.

Example Request JSON
{
  "integrations": {
    "cleanspeak": {
      "apiKey": "97f3d194-ef95-480a-9ee4-eea7dbdc450a",
      "enabled": true,
      "url": "http://localhost:8001",
      "usernameModeration": {
        "applicationId": "27a7e845-79ec-4b24-a36d-66a224055395",
        "enabled": true
      }
    },
    "kafka": {
      "defaultTopic": "FusionAuth",
      "enabled": true,
      "producer": {
        "request.timeout.ms": "2000",
        "bootstrap.servers": "localhost:9092",
        "max.block.ms": "5000"
      }
    },
    "twilio": {
      "accountSID": "_superSecreteAccountSID",
      "authToken": "_superSecretAuthToken",
      "enabled": true,
      "fromPhoneNumber": "555-555-5555",
      "url": "https://api.twilio.com"
    }
  }
}

Response

The response for this API contains Integrations.

Response Codes
Code Description
200 The request was successful. The response will contain a JSON body.
400 The request was invalid and/or malformed. The response will contain an Errors JSON Object with the specific errors. This status will also be returned if a paid FusionAuth license is required and is not present.
401 You did not supply a valid Authorization header. The header was omitted or your API key was not valid. The response will be empty. See Authentication.
500 There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty.
503 The search index is not available or encountered an exception so the request cannot be completed. The response will contain a JSON body.

Response Body

integration.cleanspeak.apiKeyString

The API key that is used when calling CleanSpeak for moderation.

integration.cleanspeak.enabledBoolean

True if CleanSpeak integration is enabled.

integration.cleanspeak.urlString

The URL of the CleanSpeak WebService service (i.e. http://localhost:8001/).

integration.cleanspeak.usernameModeration.applicationIdUUID

The Id of the CleanSpeak Application where usernames are sent for moderation.

integration.cleanspeak.usernameModeration.enabledBoolean

True if CleanSpeak username moderation is enabled.

integration.kafka.defaultTopicString

The name of the Kafka topic to send messages.

integration.kafka.enabledBoolean

True if the Kafka integration is enabled.

integration.kafka.producerMap<String, String>

String key value pairs to be used when building the Kafka Producer.

integration.twilio.accountSIDStringDEPRECATED

The Twilio Account ID to use when connecting to the Twilio API. This can be found in your Twilio dashboard.

Removed in 1.26.0

In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.

integration.twilio.authTokenStringDEPRECATED

The Twilio Auth Token to use when connecting to the Twilio API. This can be found in your Twilio dashboard.

Removed in 1.26.0

In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.

integration.twilio.enabledBooleanDEPRECATED

True if the Twilio integration is enabled.

Removed in 1.26.0

In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.

integration.twilio.fromPhoneNumberStringDEPRECATED

The configured Twilio phone number that will be used to send messages. This can be found in your Twilio dashboard.

Removed in 1.26.0

In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.

integration.twilio.messagingServiceSidStringDEPRECATED

The Twilio message service Id, this is used when using Twilio Copilot to load balance between numbers. This can be found in your Twilio dashboard.

When using the Twilio Messaging Services Id, you may omit the fromPhoneNumber field.

Removed in 1.26.0

In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.

Example Response JSON
{
  "integrations": {
    "cleanspeak": {
      "apiKey": "97f3d194-ef95-480a-9ee4-eea7dbdc450a",
      "enabled": true,
      "url": "http://localhost:8001",
      "usernameModeration": {
        "applicationId": "27a7e845-79ec-4b24-a36d-66a224055395",
        "enabled": true
      }
    },
    "kafka": {
      "defaultTopic": "FusionAuth",
      "enabled": true,
      "producer": {
        "request.timeout.ms": "2000",
        "bootstrap.servers": "localhost:9092",
        "max.block.ms": "5000"
      }
    },
    "twilio": {
      "accountSID": "_superSecreteAccountSID",
      "authToken": "_superSecretAuthToken",
      "enabled": true,
      "fromPhoneNumber": "555-555-5555",
      "url": "https://api.twilio.com"
    }
  }
}