FusionAuth System Configuration API
The System Configuration API from FusionAuth — 1 operation(s) for system configuration.
The System Configuration API from FusionAuth — 1 operation(s) for system configuration.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/fusionauth-system-configuration-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
version: 1.66.0
title: FusionAuth Api Key System Configuration API
description: This is a FusionAuth server. Find out more at [https://fusionauth.io](https://fusionauth.io). You need to [set up an API key](https://fusionauth.io/docs/v1/tech/apis/authentication#managing-api-keys) in the FusionAuth instance you are using to test out the API calls.
license:
name: Apache2
servers:
- url: http://localhost:9011
- url: https://sandbox.fusionauth.io
security:
- ApiKeyAuth: []
tags:
- name: System Configuration
paths:
/api/system-configuration:
patch:
description: Updates, via PATCH, the system configuration.
operationId: patchSystemConfigurationWithId
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/SystemConfigurationRequest'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/SystemConfigurationResponse'
default:
description: Error
content:
application/json:
schema:
$ref: '#/components/schemas/Errors'
tags:
- System Configuration
put:
description: Updates the system configuration.
operationId: updateSystemConfigurationWithId
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/SystemConfigurationRequest'
responses:
'200':
description: Success
content:
application/json:
schema:
$ref: '#/components/schemas/SystemConfigurationResponse'
default:
description: Error
content:
application/json:
schema:
$ref: '#/components/schemas/Errors'
tags:
- System Configuration
components:
schemas:
CORSConfiguration:
description: ''
type: object
properties:
allowCredentials:
type: boolean
allowedHeaders:
type: array
items:
type: string
allowedMethods:
type: array
items:
$ref: '#/components/schemas/HTTPMethod'
allowedOrigins:
type: array
items:
type: string
format: URI
debug:
type: boolean
exposedHeaders:
type: array
items:
type: string
preflightMaxAgeInSeconds:
type: integer
enabled:
type: boolean
UsageDataConfiguration:
description: Config for Usage Data Stats
type: object
properties:
numberOfDaysToRetain:
type: integer
enabled:
type: boolean
SystemConfigurationRequest:
description: Request for the system configuration API.
type: object
properties:
systemConfiguration:
$ref: '#/components/schemas/SystemConfiguration'
Errors:
description: Standard error domain object that can also be used as the response from an API call.
type: object
properties:
fieldErrors:
type: array
items:
$ref: '#/components/schemas/Error'
generalErrors:
type: array
items:
$ref: '#/components/schemas/Error'
SystemConfiguration:
description: ''
type: object
properties:
auditLogConfiguration:
$ref: '#/components/schemas/AuditLogConfiguration'
corsConfiguration:
$ref: '#/components/schemas/CORSConfiguration'
data:
type: object
additionalProperties:
type: object
eventLogConfiguration:
$ref: '#/components/schemas/EventLogConfiguration'
insertInstant:
$ref: '#/components/schemas/ZonedDateTime'
lastUpdateInstant:
$ref: '#/components/schemas/ZonedDateTime'
loginRecordConfiguration:
$ref: '#/components/schemas/LoginRecordConfiguration'
reportTimezone:
$ref: '#/components/schemas/ZoneId'
trustedProxyConfiguration:
$ref: '#/components/schemas/SystemTrustedProxyConfiguration'
uiConfiguration:
$ref: '#/components/schemas/UIConfiguration'
usageDataConfiguration:
$ref: '#/components/schemas/UsageDataConfiguration'
webhookEventLogConfiguration:
$ref: '#/components/schemas/WebhookEventLogConfiguration'
SystemTrustedProxyConfiguration:
description: ''
type: object
properties:
trustPolicy:
$ref: '#/components/schemas/SystemTrustedProxyConfigurationPolicy'
trusted:
type: array
items:
type: string
ZonedDateTime:
description: 'The number of milliseconds since the unix epoch: January 1, 1970 00:00:00 UTC. This value is always in UTC.'
example: '1659380719000'
type: integer
format: int64
AuditLogConfiguration:
type: object
properties:
delete:
$ref: '#/components/schemas/DeleteConfiguration'
EventLogConfiguration:
type: object
properties:
numberToRetain:
type: integer
SystemConfigurationResponse:
description: Response for the system configuration API.
type: object
properties:
systemConfiguration:
$ref: '#/components/schemas/SystemConfiguration'
Error:
description: Defines an error.
type: object
properties:
code:
type: string
data:
type: object
additionalProperties:
type: object
message:
type: string
ZoneId:
description: Timezone Identifier
example: America/Denver
pattern: ^w+/w+$
type: string
UIConfiguration:
type: object
properties:
headerColor:
type: string
logoURL:
type: string
menuFontColor:
type: string
LoginRecordConfiguration:
type: object
properties:
delete:
$ref: '#/components/schemas/DeleteConfiguration'
DeleteConfiguration:
type: object
properties:
numberOfDaysToRetain:
type: integer
enabled:
type: boolean
SystemTrustedProxyConfigurationPolicy:
description: ''
type: string
enum:
- All
- OnlyConfigured
HTTPMethod:
description: ''
type: string
enum:
- GET
- POST
- PUT
- DELETE
- HEAD
- OPTIONS
- PATCH
WebhookEventLogConfiguration:
description: The system configuration for Webhook Event Log data.
type: object
properties:
delete:
$ref: '#/components/schemas/DeleteConfiguration'
enabled:
type: boolean
securitySchemes:
ApiKeyAuth:
type: apiKey
name: Authorization
in: header
BearerAuth:
type: http
scheme: bearer
bearerFormat: JWT