Generic Connector
Overview
This API has been available since 1.18.0
The following APIs are provided to manage Generic Connectors.
Create the Generic Connector
Request
The type in the request JSON is used to determine that you are creating the Generic Connector.
Request Parameters
connectorId
UUIDDefaults to secure random UUIDThe Id to use for the new Connector. If not specified a secure random UUID will be generated.
Request Body
connector.authenticationURL
StringrequiredThe fully qualified URL used to send an HTTP request to authenticate the user. Must be a valid URL.
connector.connectTimeout
IntegerrequiredThe connect timeout for the HTTP connection, in milliseconds. Value must be greater than 0
.
connector.data
ObjectAn object that can hold any information about the Connector that should be persisted.
connector.debug
BooleanDefaults to falseDetermines if debug should be enabled to create an event log to assist in debugging integration errors.
connector.headers
ObjectAn object that can hold HTTPHeader key and value pairs.
connector.httpAuthenticationPassword
StringThe basic authentication password to use for requests to the Connector.
connector.httpAuthenticationUsername
StringThe basic authentication username to use for requests to the Connector.
connector.name
StringrequiredThe unique Connector name.
connector.readTimeout
IntegerrequiredThe read timeout for the HTTP connection, in milliseconds. Value must be greater than 0
.
connector.sslCertificateKeyId
UUIDThe Id of an existing Key. The X.509 certificate is used for client certificate authentication in requests to the Connector.
connector.type
StringrequiredThis field must be set to Generic
.
Example Generic Connector Request JSON
{
"connector": {
"authenticationURL": "http://localhost:3000/api/authenticate",
"connectTimeout": 100,
"data": {
"modifiedBy": "richard"
},
"debug": true,
"headers": {
"header1": "value1",
"header2": "value2"
},
"httpAuthenticationPassword": "basicPassword",
"httpAuthenticationUsername": "basicUsername",
"name": "My Generic Connector",
"readTimeout": 100,
"sslCertificateKeyId": "ce485a91-906f-4615-af75-81d37dc71e90",
"type": "Generic"
}
}
Response
Response CodesCode | 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. |
Response Body
connector.authenticationURL
StringThe fully qualified URL used to send an HTTP request to authenticate the user.
connector.connectTimeout
IntegerThe connect timeout for the HTTP connection, in milliseconds. Value must be greater than 0
.
connector.data
ObjectAn object that can hold any information about the Connector that should be persisted.
connector.debug
BooleanDetermines if debug should be enabled to create an event log to assist in debugging integration errors.
connector.headers
ObjectAn object that can hold HTTPHeader key and value pairs.
connector.httpAuthenticationPassword
StringThe basic authentication password to use for requests to the Connector.
connector.httpAuthenticationUsername
StringThe basic authentication username to use for requests to the Connector.
connector.id
UUIDThe unique Id of the Connector.
connector.insertInstant
LongThe instant when the Connector was created.
connector.lastUpdateInstant
LongThe instant when the Connector was last updated.
connector.name
StringThe unique Connector name.
connector.readTimeout
IntegerThe read timeout for the HTTP connection, in milliseconds. Value must be greater than 0
.
connector.sslCertificateKeyId
UUIDThe Id of an existing Key. The X.509 certificate is used for client certificate authentication in requests to the Connector.
connector.type
StringThis field must be set to Generic
.
Example Generic Connector Response JSON
{
"connector": {
"authenticationURL": "http://localhost:3000/api/authenticate",
"connectTimeout": 100,
"data": {
"modifiedBy": "richard"
},
"debug": true,
"headers": {
"header1": "value1",
"header2": "value2"
},
"httpAuthenticationPassword": "basicPassword",
"httpAuthenticationUsername": "basicUsername",
"id": "1188edfc-cef3-4555-910e-181ddf6153c0",
"insertInstant": 1503513015493,
"lastUpdateInstant": 1503513549421,
"name": "My Generic Connector",
"readTimeout": 100,
"sslCertificateKeyId": "ce485a91-906f-4615-af75-81d37dc71e90",
"type": "Generic"
}
}
Retrieve the Generic Connector
Request
Request Parameters
connectorId
UUIDrequiredThe Id of the Connector to retrieve.
Response
Response CodesCode | 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. |
404 | The object you requested doesn't exist. The response will be empty. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
Response Body
connector.authenticationURL
StringThe fully qualified URL used to send an HTTP request to authenticate the user.
connector.connectTimeout
IntegerThe connect timeout for the HTTP connection, in milliseconds. Value must be greater than 0
.
connector.data
ObjectAn object that can hold any information about the Connector that should be persisted.
connector.debug
BooleanDetermines if debug should be enabled to create an event log to assist in debugging integration errors.
connector.headers
ObjectAn object that can hold HTTPHeader key and value pairs.
connector.httpAuthenticationPassword
StringThe basic authentication password to use for requests to the Connector.
connector.httpAuthenticationUsername
StringThe basic authentication username to use for requests to the Connector.
connector.id
UUIDThe unique Id of the Connector.
connector.insertInstant
LongThe instant when the Connector was created.
connector.lastUpdateInstant
LongThe instant when the Connector was last updated.
connector.name
StringThe unique Connector name.
connector.readTimeout
IntegerThe read timeout for the HTTP connection, in milliseconds. Value must be greater than 0
.
connector.sslCertificateKeyId
UUIDThe Id of an existing Key. The X.509 certificate is used for client certificate authentication in requests to the Connector.
connector.type
StringThis field must be set to Generic
.
Example Generic Connector Response JSON
{
"connector": {
"authenticationURL": "http://localhost:3000/api/authenticate",
"connectTimeout": 100,
"data": {
"modifiedBy": "richard"
},
"debug": true,
"headers": {
"header1": "value1",
"header2": "value2"
},
"httpAuthenticationPassword": "basicPassword",
"httpAuthenticationUsername": "basicUsername",
"id": "1188edfc-cef3-4555-910e-181ddf6153c0",
"insertInstant": 1503513015493,
"lastUpdateInstant": 1503513549421,
"name": "My Generic Connector",
"readTimeout": 100,
"sslCertificateKeyId": "ce485a91-906f-4615-af75-81d37dc71e90",
"type": "Generic"
}
}
Update the Generic Connector
This API is used to update an existing Generic Connector.
You must specify all of the properties of the Generic Connector when calling this API with the PUT
HTTP method. When used with PUT
, this API doesn’t merge the existing Generic Connector and your new data. It replaces the existing Generic Connector with your new data.
Utilize the PATCH
HTTP method to send specific changes to merge into an existing Generic Connector.
Request
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 Parameters
connectorId
UUIDrequiredThe Id of the Connector to update.
Request Body
connector.authenticationURL
StringrequiredThe fully qualified URL used to send an HTTP request to authenticate the user. Must be a valid URL.
connector.connectTimeout
IntegerrequiredThe connect timeout for the HTTP connection, in milliseconds. Value must be greater than 0
.
connector.data
ObjectAn object that can hold any information about the Connector that should be persisted.
connector.debug
BooleanDefaults to falseDetermines if debug should be enabled to create an event log to assist in debugging integration errors.
connector.headers
ObjectAn object that can hold HTTPHeader key and value pairs.
connector.httpAuthenticationPassword
StringThe basic authentication password to use for requests to the Connector.
connector.httpAuthenticationUsername
StringThe basic authentication username to use for requests to the Connector.
connector.name
StringrequiredThe unique Connector name.
connector.readTimeout
IntegerrequiredThe read timeout for the HTTP connection, in milliseconds. Value must be greater than 0
.
connector.sslCertificateKeyId
UUIDThe Id of an existing Key. The X.509 certificate is used for client certificate authentication in requests to the Connector.
connector.type
StringrequiredThis field must be set to Generic
.
Example Generic Connector Request JSON
{
"connector": {
"authenticationURL": "http://localhost:3000/api/authenticate",
"connectTimeout": 100,
"data": {
"modifiedBy": "richard"
},
"debug": true,
"headers": {
"header1": "value1",
"header2": "value2"
},
"httpAuthenticationPassword": "basicPassword",
"httpAuthenticationUsername": "basicUsername",
"name": "My Generic Connector",
"readTimeout": 100,
"sslCertificateKeyId": "ce485a91-906f-4615-af75-81d37dc71e90",
"type": "Generic"
}
}
Response
The response for this API contains the Generic Connector.
Response CodesCode | 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. |
404 | The object you are trying to update doesn't exist. The response will be empty. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |
Response Body
connector.authenticationURL
StringThe fully qualified URL used to send an HTTP request to authenticate the user.
connector.connectTimeout
IntegerThe connect timeout for the HTTP connection, in milliseconds. Value must be greater than 0
.
connector.data
ObjectAn object that can hold any information about the Connector that should be persisted.
connector.debug
BooleanDetermines if debug should be enabled to create an event log to assist in debugging integration errors.
connector.headers
ObjectAn object that can hold HTTPHeader key and value pairs.
connector.httpAuthenticationPassword
StringThe basic authentication password to use for requests to the Connector.
connector.httpAuthenticationUsername
StringThe basic authentication username to use for requests to the Connector.
connector.id
UUIDThe unique Id of the Connector.
connector.insertInstant
LongThe instant when the Connector was created.
connector.lastUpdateInstant
LongThe instant when the Connector was last updated.
connector.name
StringThe unique Connector name.
connector.readTimeout
IntegerThe read timeout for the HTTP connection, in milliseconds. Value must be greater than 0
.
connector.sslCertificateKeyId
UUIDThe Id of an existing Key. The X.509 certificate is used for client certificate authentication in requests to the Connector.
connector.type
StringThis field must be set to Generic
.
Example Generic Connector Response JSON
{
"connector": {
"authenticationURL": "http://localhost:3000/api/authenticate",
"connectTimeout": 100,
"data": {
"modifiedBy": "richard"
},
"debug": true,
"headers": {
"header1": "value1",
"header2": "value2"
},
"httpAuthenticationPassword": "basicPassword",
"httpAuthenticationUsername": "basicUsername",
"id": "1188edfc-cef3-4555-910e-181ddf6153c0",
"insertInstant": 1503513015493,
"lastUpdateInstant": 1503513549421,
"name": "My Generic Connector",
"readTimeout": 100,
"sslCertificateKeyId": "ce485a91-906f-4615-af75-81d37dc71e90",
"type": "Generic"
}
}
Delete the Generic Connector
Request
connectorId
UUIDrequiredThe Id of the Connector to delete.
Response
This API does not return a JSON response body.
Response CodesCode | Description |
---|---|
200 | The request was successful. |
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. |
404 | The object you requested doesn't exist. The response will be empty. |
500 | There was an internal error. A stack trace is provided and logged in the FusionAuth log files. The response will be empty. |