mirror of
https://github.com/directus/directus.git
synced 2026-02-14 14:24:55 -05:00
26 lines
817 B
YAML
26 lines
817 B
YAML
get:
|
|
description: Perform a system status check and return the options.
|
|
operationId: serverInfo
|
|
parameters:
|
|
- description: The first time you create a project, the provided token will be saved and required for subsequent project installs. It can also be found and configured in `/config/__api.json` on your server.
|
|
in: query
|
|
name: super_admin_token
|
|
required: true
|
|
schema:
|
|
type: integer
|
|
responses:
|
|
'200':
|
|
content:
|
|
application/json:
|
|
schema:
|
|
properties:
|
|
data:
|
|
type: object
|
|
type: object
|
|
description: Successful request
|
|
'401':
|
|
$ref: '../../openapi.yaml#/components/responses/UnauthorizedError'
|
|
'404':
|
|
$ref: '../../openapi.yaml#/components/responses/NotFoundError'
|
|
tags:
|
|
- Server |