You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"description": "Enter the number of days for the token life time. By default, it will expire after 1 day. Maximum is 30 days.",
40
-
"schema": {
41
-
"type": "integer",
42
-
"example": 0
43
-
},
44
-
"in": "query",
45
-
"required": false
46
-
}
47
-
],
48
-
"responses": {
49
-
"200": {
50
-
"content": {
51
-
"application/json": {
52
-
"examples": {
53
-
"success": {
54
-
"value": "message: { Token created successfully}"
55
-
}
56
-
}
57
-
}
58
-
},
59
-
"description": "If token is created successfully, check the response Headers."
60
-
}
61
-
},
62
-
"operationId": "getToken",
63
-
"summary": "Generate Access Token",
64
-
"description": "Using the endpoint & parameters below, you can create an API request that can be used in a number of different ways to generate your authentication token. Most importantly, this method is useful for setting up an automated token renewal process. Your token will be supplied via the Authorization header using the Bearer Token schema. For security reasons, tokens are only valid for a limited period. Use the <i>tokenLifeTime</i> parameter to indicate the desired life time of your token (By default, token will expire after 1 day. Maximum is 30 days).\r\n\r\n\r\n\r\nThese are the supported parameters:"
65
-
}
66
-
}
67
-
},
68
-
"components": {
69
-
"securitySchemes": {
70
-
"JWT": {
71
-
"scheme": "bearer",
72
-
"type": "http",
73
-
"description": "This API uses JWT authentication tokens (JSON Web Tokens) to validate all endpoints. The first step for accessing these endpoints is to generate a JWT authentication token, since all API endpoints require a valid token. For security reasons, tokens are only valid for a limited period (By default, tokens will expire after 1 day. Maximum is 30 days)."
0 commit comments