Integration API
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.0 Twilio integrations are now managed by the Messengers API.
Retrieve Integrations#
This API is used to retrieve integrations.
Request#
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.apiKeyStringThe API key that is used when calling CleanSpeak for moderation.
integration.cleanspeak.enabledBooleanTrue if CleanSpeak integration is enabled.
integration.cleanspeak.urlStringThe URL of the CleanSpeak WebService service (i.e. http://localhost:8001/).
integration.cleanspeak.usernameModeration.applicationIdUUIDThe Id of the CleanSpeak Application where usernames are sent for moderation.
integration.cleanspeak.usernameModeration.enabledBooleanTrue if CleanSpeak username moderation is enabled.
integration.kafka.defaultTopicStringThe name of the Kafka topic to send messages.
integration.kafka.enabledBooleanTrue 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.accountSIDStringDEPRECATEDThe Twilio Account ID to use when connecting to the Twilio API. This can be found in your Twilio dashboard.
Removed in 1.26.0In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.
integration.twilio.authTokenStringDEPRECATEDThe Twilio Auth Token to use when connecting to the Twilio API. This can be found in your Twilio dashboard.
Removed in 1.26.0In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.
integration.twilio.enabledBooleanDEPRECATEDTrue if the Twilio integration is enabled.
Removed in 1.26.0In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.
integration.twilio.fromPhoneNumberStringDEPRECATEDThe configured Twilio phone number that will be used to send messages. This can be found in your Twilio dashboard.
Removed in 1.26.0In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.
integration.twilio.messagingServiceSidStringDEPRECATEDThe 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.0In 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#
For backward compatibility, the PATCH method accepts the same media type (specified by a Content-Type of application/json) and body as the PUT request. You can also use the following media types for different behavior:
- JSON Patch/RFC 6902:
application/json-patch+json - JSON Merge Patch/RFC 7396:
merge-patch+json
For details, see the PATCH documentation.
Using a media type of application/json merges the provided request parameters into the existing object. As a result, all parameters are optional with PATCH: only provide the values you want to change. To remove a value, provide a null value. Patching an Array appends all values in the new list to the old list.
Request Body#
integration.cleanSpeakConfiguration.apiKeyStringThe API key that is used when calling CleanSpeak for moderation.
integration.cleanSpeakConfiguration.enabledBooleanDefaults to falseTrue if CleanSpeak integration is enabled.
integration.cleanSpeakConfiguration.urlStringThe URL of the CleanSpeak WebService service (i.e. http://localhost:8001/). Required when the CleanSpeak integration is enabled.
integration.cleanSpeakConfiguration.usernameModeration.applicationIdUUIDThe Id of the CleanSpeak Application where usernames are sent for moderation.
integration.cleanSpeakConfiguration.usernameModeration.enabledBooleanDefaults to falseTrue if CleanSpeak username moderation is enabled.
integration.kafka.defaultTopicStringThe name of the Kafka topic to send messages. Required when the Kafka integration is enabled.
integration.kafka.enabledBooleanDefaults to falseTrue 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.accountSIDStringDEPRECATEDThe 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.0In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.
integration.twilio.authTokenStringDEPRECATEDThe 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.0In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.
integration.twilio.enabledBooleanDefaults to falseDEPRECATEDTrue if the Twilio integration is enabled.
Removed in 1.26.0In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.
integration.twilio.fromPhoneNumberStringDEPRECATEDThe configured Twilio phone number that will be used to send messages. This can be found in your Twilio dashboard.
Removed in 1.26.0In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.
integration.twilio.messagingServiceSidStringDEPRECATEDThe 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.0In 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.apiKeyStringThe API key that is used when calling CleanSpeak for moderation.
integration.cleanspeak.enabledBooleanTrue if CleanSpeak integration is enabled.
integration.cleanspeak.urlStringThe URL of the CleanSpeak WebService service (i.e. http://localhost:8001/).
integration.cleanspeak.usernameModeration.applicationIdUUIDThe Id of the CleanSpeak Application where usernames are sent for moderation.
integration.cleanspeak.usernameModeration.enabledBooleanTrue if CleanSpeak username moderation is enabled.
integration.kafka.defaultTopicStringThe name of the Kafka topic to send messages.
integration.kafka.enabledBooleanTrue 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.accountSIDStringDEPRECATEDThe Twilio Account ID to use when connecting to the Twilio API. This can be found in your Twilio dashboard.
Removed in 1.26.0In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.
integration.twilio.authTokenStringDEPRECATEDThe Twilio Auth Token to use when connecting to the Twilio API. This can be found in your Twilio dashboard.
Removed in 1.26.0In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.
integration.twilio.enabledBooleanDEPRECATEDTrue if the Twilio integration is enabled.
Removed in 1.26.0In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.
integration.twilio.fromPhoneNumberStringDEPRECATEDThe configured Twilio phone number that will be used to send messages. This can be found in your Twilio dashboard.
Removed in 1.26.0In version 1.26.0 and beyond, Twilio configuration can be managed in the Messengers API.
integration.twilio.messagingServiceSidStringDEPRECATEDThe 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.0In 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"
}
}
}