Returns the details of the given database table

GET
api/databases/{dbid}/metadata/tables/{table}
This request is used for getting information about the given database table. For example, you can get the description of the database table (Description).

Request:

Argument Type Description
dbid GUID  The ID of the database
table String  The name of the database table
Query parameter Required Default Options Description
all   1/0  Returns full metadata

Response:

Content

Type name Description
Object 

Request:
  1. GET api/databases/ec5a34c2-7062-4be7-ade9-c15acefcdbb8/metadata/tables/TmSchedulerRecord
  2. Accept: text/json
  3. Accept-Encoding: deflate
  4. Host: localhost:6496
  5. Cookie: sid=8d9210b3-5f3c-4db1-8038-748f67531bea
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 15:03:21 GMT
  6. ETag: "634916866010755264"
  7. Last-Modified: Fri, 21 Dec 2012 09:36:41 GMT
  8. Server: Microsoft-HTTPAPI/2.0
  9.  
  10. {
  11. "MetaName": "TmSchedulerRecord",
  12. "Name": "IDTmSchedulerRecord",
  13. "DisplayName": "IDTmSchedulerRecord",
  14. "Description": "",
  15. "InterfaceTypeName": "Vqs.Tm.Shared.Scheduler.IDTmSchedulerRecord",
  16. "CacheRegion": "",
  17. "CacheMode": null,
  18. "TitleFormat": "",
  19. "Declarative": false,
  20. "LockedBySolution": false
  21. }