global.rst 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. .. _rest_api_global:
  2. Global settings
  3. ===============
  4. Allows access to GeoServer's global settings.
  5. ``/settings[.<format>]``
  6. ------------------------
  7. Controls all global settings.
  8. .. list-table::
  9. :header-rows: 1
  10. * - Method
  11. - Action
  12. - Status code
  13. - Formats
  14. - Default Format
  15. * - GET
  16. - List all global settings
  17. - 200
  18. - HTML, XML, JSON
  19. - HTML
  20. * - POST
  21. -
  22. - 405
  23. -
  24. -
  25. * - PUT
  26. - Update global settings
  27. - 200
  28. - XML, JSON
  29. -
  30. * - DELETE
  31. -
  32. - 405
  33. -
  34. -
  35. ``/settings/contact[.<format>]``
  36. --------------------------------
  37. Controls global contact information only.
  38. .. list-table::
  39. :header-rows: 1
  40. * - Method
  41. - Action
  42. - Status code
  43. - Formats
  44. - Default Format
  45. * - GET
  46. - List global contact information
  47. - 200
  48. - HTML, XML, JSON
  49. - HTML
  50. * - POST
  51. -
  52. - 405
  53. -
  54. -
  55. * - PUT
  56. - Update global contact
  57. - 200
  58. - XML, JSON
  59. -
  60. * - DELETE
  61. -
  62. - 405
  63. -
  64. -