/sys/config/cors
Restricted endpoint
The API path can only be called from the root namespace.The /sys/config/cors
endpoint is used to configure CORS settings.
sudo
required – All CORS endpoints requiresudo
capability in addition to any path-specific capabilities.
Read CORS settings
This endpoint returns the current CORS configuration.
Method | Path |
---|---|
GET | /sys/config/cors |
Sample request
Sample response
Configure CORS settings
This endpoint allows configuring the origins that are permitted to make cross-origin requests, as well as headers that are allowed on cross-origin requests.
Method | Path |
---|---|
POST | /sys/config/cors |
Parameters
allowed_origins
(string or string array: <required>)
– A wildcard (*
), comma-delimited string, or array of strings specifying the origins that are permitted to make cross-origin requests.allowed_headers
(string or string array: "" or [])
– A comma-delimited string or array of strings specifying headers that are permitted to be on cross-origin requests. Headers set via this parameter will be appended to the list of headers that Vault allows by default.
Sample payload
Sample request
Delete CORS settings
This endpoint removes any CORS configuration.
Method | Path |
---|---|
DELETE | /sys/config/cors |
Sample request