Returns the details of the given session

GET
api/session
This request is used for getting information about current authentications to databases and current requests (including the given request).

Content

Type name Description
Object 

Request:
  1. GET api/session
  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 09:10:33 GMT
  6. Set-Cookie: sid=bbba1fa1-563b-4707-80ce-8f6750718cc6; path=/;
  7. Server: Microsoft-HTTPAPI/2.0
  8.  
  9. {
  10. "Id": "bbba1fa1-563b-4707-80ce-8f6750718cc6",
  11. "Users": [
  12. {
  13. "DatabaseId": "00000000-0000-0000-0000-000000000001",
  14. "UserId": "85afe8c4-887b-4e2c-a38c-1be6b79a97e5",
  15. "User": "Guest",
  16. "Admin": false
  17. }
  18. ],
  19. "Requests": [
  20. {
  21. "RequestId": "6b1fe3de-c064-4398-a5d7-9947216fc8ee"
  22. }
  23. ]
  24. }