get.json 557 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "operationId": "refreshToken",
  3. "summary": "Refresh your access token",
  4. "tags": ["Tokens"],
  5. "security": [
  6. {
  7. "BearerAuth": ["tokens"]
  8. }
  9. ],
  10. "responses": {
  11. "200": {
  12. "description": "200 response",
  13. "content": {
  14. "application/json": {
  15. "examples": {
  16. "default": {
  17. "value": {
  18. "expires": "2025-02-04T20:40:46.340Z",
  19. "token": "eyJhbGciOiJSUzUxMiIsInR5cCI6IkpXVCJ9.ey...xaHKYr3Kk6MvkUjcC4"
  20. }
  21. }
  22. },
  23. "schema": {
  24. "$ref": "../../components/token-object.json"
  25. }
  26. }
  27. }
  28. }
  29. }
  30. }