get.json 528 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "operationId": "downloadCertificate",
  3. "summary": "Downloads a Certificate",
  4. "tags": ["Certificates"],
  5. "security": [
  6. {
  7. "BearerAuth": ["certificates"]
  8. }
  9. ],
  10. "parameters": [
  11. {
  12. "in": "path",
  13. "name": "certID",
  14. "schema": {
  15. "type": "integer",
  16. "minimum": 1
  17. },
  18. "required": true,
  19. "example": 1
  20. }
  21. ],
  22. "responses": {
  23. "200": {
  24. "description": "200 response",
  25. "content": {
  26. "application/zip": {
  27. "schema": {
  28. "type": "string",
  29. "format": "binary"
  30. }
  31. }
  32. }
  33. }
  34. }
  35. }