Returns the list of all databases

GET
api/databases
This request is used for getting the list of databases and their parameters such as name, state, type, etc.
Warning The list also contains system database, but we strongly recommended NOT to change any data in the system database!

Content

Type name Description
Object 

Request:
  1. GET api/databases
  2. Accept: text/json
  3. Accept-Encoding: deflate
  4. Host: localhost:6496
  5. Connection: Keep-Alive
Response:
  1. Transfer-Encoding: chunked
  2. Content-Encoding:
  3. Cache-Control: no-store
  4. Content-Type: text/json; charset=utf-8
  5. Date: Fri, 21 Dec 2012 14:51:28 GMT
  6. Set-Cookie: sid=d8ee1782-edf8-4ca0-88df-514db7d23043; path=/;
  7. Server: Microsoft-HTTPAPI/2.0
  8.  
  9. [
  10. {
  11. "Id": "00000000-0000-0000-0000-000000000001",
  12. "Name": "System",
  13. "Version": "1.0.370.21204",
  14. "SolutionMask": 1,
  15. "State": 0,
  16. "Blocked": false,
  17. "Customized": false,
  18. "CustomizationRevision": 0
  19. },
  20. {
  21. "Id": "ec5a34c2-7062-4be7-ade9-c15acefcdbb8",
  22. "Name": "Sample",
  23. "Version": "1.0.370.21204",
  24. "SolutionMask": 2,
  25. "State": 0,
  26. "Blocked": false,
  27. "Customized": false,
  28. "CustomizationRevision": 0
  29. }
  30. ]