Exporters
Update the configuration map of a schema exporter.
Updates the exporter configuration directly. Unlike POST /exporters, the payload here is not wrapped in a config object.
put/exporters/{name}/config
Path parameters
namestring required
Name of the exporter to update.
Request body
object required
Direct map of configuration properties for the exporter.
Example request
{
"schema.registry.url": "<Physical SR Endpoint>",
"basic.auth.credentials.source": "USER_INFO",
"basic.auth.user.info": "<SR Credentials>"
}Response
Name of the updated exporter.
Example response
{
"name": "test-exporter"
}