You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
887 B
YAML
24 lines
887 B
YAML
2 years ago
|
get:
|
||
|
tags:
|
||
|
- admin
|
||
|
summary: Get API token settings
|
||
|
responses:
|
||
|
"200":
|
||
|
description: "A JSON object containing API tokens and settings"
|
||
|
content:
|
||
|
application/json:
|
||
|
schema:
|
||
|
allOf:
|
||
|
- type: object
|
||
|
properties:
|
||
|
lastSeen:
|
||
|
type: object
|
||
|
description: A key-value set of API tokens and a UNIX timestamp of when it was last used
|
||
|
properties: {}
|
||
|
additionalProperties: {}
|
||
|
lastSeenISO:
|
||
|
type: object
|
||
|
description: A key-value set of API tokens and an ISO 8601 formatted date string of when it was last used
|
||
|
properties: {}
|
||
|
additionalProperties: {}
|
||
|
- $ref: ../../../components/schemas/CommonProps.yaml#/CommonProps
|