admin_system_create
POST/api/v3//admin/system/
Get system information.
Responses
- 200
- 400
- 403
- application/json
- Schema
- Example (from schema)
Schema
http_headers
object
required
http_host stringrequired
Get HTTP host
http_is_secure booleanrequired
Get HTTP Secure flag
runtime
object
required
brand stringrequired
Currently active brand
server_time date-timerequired
Current server time
embedded_outpost_disabled booleanrequired
Whether the embedded outpost is disabled
embedded_outpost_host stringrequired
Get the FQDN configured on the embedded outpost
{
"http_headers": {},
"http_host": "string",
"http_is_secure": true,
"runtime": {
"python_version": "string",
"environment": "string",
"architecture": "string",
"platform": "string",
"uname": "string",
"openssl_version": "string",
"openssl_fips_enabled": true,
"authentik_version": "string"
},
"brand": "string",
"server_time": "2024-09-27T14:26:17.961Z",
"embedded_outpost_disabled": true,
"embedded_outpost_host": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
non_field_errors string[]
code string
{
"non_field_errors": [
"string"
],
"code": "string"
}
- application/json
- Schema
- Example (from schema)
Schema
detail stringrequired
code string
{
"detail": "string",
"code": "string"
}
- curl
- python
- go
- nodejs
- ruby
- csharp
- php
- java
- powershell
- CURL
curl -L -X POST '/api/v3/admin/system/' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'