openapi: 3.0.3 info: title: NetBox REST authentication-check API version: 4.5.9 (4.5) license: name: Apache v2 License servers: - url: '' description: NetBox tags: - name: authentication-check paths: /api/authentication-check/: get: operationId: authentication_check_retrieve description: Return the user making the request, if authenticated successfully. tags: - authentication-check security: - cookieAuth: [] - tokenAuth: [] responses: '200': content: application/json: schema: type: object additionalProperties: {} description: '' components: securitySchemes: cookieAuth: type: apiKey in: cookie name: sessionid tokenAuth: type: apiKey in: header name: Authorization description: '`Token ` (v1) or `Bearer .` (v2)'