mirror of
https://github.com/LukeHagar/api-specs.git
synced 2025-12-06 12:27:48 +00:00
Add security, and server declaration
This commit is contained in:
@@ -5,6 +5,13 @@ info:
|
|||||||
description: The Lifecycle API can be used to access and modify various resources in your environment.
|
description: The Lifecycle API can be used to access and modify various resources in your environment.
|
||||||
license:
|
license:
|
||||||
name: MIT
|
name: MIT
|
||||||
|
|
||||||
|
servers:
|
||||||
|
- url: https://{tenantName}.nonemployee.com/api
|
||||||
|
variables:
|
||||||
|
tenantName:
|
||||||
|
description: Tenant name assigned to customer
|
||||||
|
|
||||||
paths:
|
paths:
|
||||||
# Users
|
# Users
|
||||||
/user:
|
/user:
|
||||||
@@ -117,3 +124,13 @@ paths:
|
|||||||
# Jobs
|
# Jobs
|
||||||
/job_status:
|
/job_status:
|
||||||
$ref: "./paths/job_status.yaml"
|
$ref: "./paths/job_status.yaml"
|
||||||
|
|
||||||
|
security:
|
||||||
|
BearerAuth: []
|
||||||
|
|
||||||
|
components:
|
||||||
|
securitySchemes:
|
||||||
|
BearerAuth:
|
||||||
|
type: http
|
||||||
|
scheme: bearer
|
||||||
|
bearerFormat: Token token=<your token>
|
||||||
Reference in New Issue
Block a user