Returns the details of the given database

GET
api/databases/{dbid}
This request is used for getting information about database parameters such as name, state, type, etc.

Request:

Argument Type Description
dbid GUID  The ID of the database

Response:

Content

Type name Description
Object 

Request:
  1. GET api/databases/ec5a34c2-7062-4be7-ade9-c15acefcdbb8
  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: Tue, 25 Dec 2012 09:42:17 GMT
  6. Set-Cookie: sid=300fad67-f2b4-40ac-bf43-9d3407b3e2f4; path=/;
  7. Server: Microsoft-HTTPAPI/2.0
  8.  
  9. {
  10. "Id": "ec5a34c2-7062-4be7-ade9-c15acefcdbb8",
  11. "Name": "Sample",
  12. "Version": "1.0.370.21204",
  13. "SolutionMask": 2,
  14. "State": 0,
  15. "Blocked": false,
  16. "Customized": false,
  17. "CustomizationRevision": 0
  18. }