Returns the list of all records of the given database table

GET
api/databases/{dbid}/tables/{table}
This request is used for getting the list of all records of the given database table. The list can be filtered by using parameters 'filter', 'skip' and 'top'.

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
filter       Sets filter
skip       Returns data starting from the given item
top     Max 200  Returns the given number of data items

Response:

Content

Name Type Options Description
IsTooManyItems Boolean  Is too many result objects
Items Array of Object  Result object list

Request:
  1. GET api/databases/ec5a34c2-7062-4be7-ade9-c15acefcdbb8/tables/Notifications
  2. Accept: text/json
  3. Accept-Encoding: deflate
  4. Host: localhost:6496
  5. Cookie: sid=d8ee1782-edf8-4ca0-88df-514db7d23043
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:53:33 GMT
  6. Server: Microsoft-HTTPAPI/2.0
  7.  
  8. {
  9. "IsTooManyItems": false,
  10. "Items": [
  11. {
  12. "Id": "634ab5fb-75cb-41a3-b706-704b7a7cf0f3",
  13. "InfoName": "Notifications",
  14. "ModifiedStamp": "2012-12-21T16:53:29.7320511+02:00",
  15. "Properties": {
  16. "Id": "634ab5fb-75cb-41a3-b706-704b7a7cf0f3",
  17. "RecipientUser": "ae18dea5-4f60-4f70-ae31-d8052984e31e",
  18. "DatabaseId": "00000000-0000-0000-0000-000000000000",
  19. "NotificationName": "Overdue task event (Executor)",
  20. "New": true,
  21. "Tag": "bd4bec9c-84bf-4647-80d0-775150a0c881",
  22. "Urgent": true,
  23. "Tags": null,
  24. "CreatorUser": "943ed8ca-efd5-4315-842d-b52c3c7becc6",
  25. "EventKind": "OverdueEventKind",
  26. "Subject": "You have delayed task ‘T2688’",
  27. "Description": "Task: ‘Celebrate the end of the world’\r\nDue date: 21.12.2012 8:00\r\nAssignments: admin",
  28. "CreatedTime": "2012-12-21T16:53:29.7270506+02:00",
  29. "Read": false,
  30. "Url": "centriqs://findentity/T2688",
  31. "ModifiedStamp": "2012-12-21T16:53:29.7320511+02:00"
  32. }
  33. }
  34. ]
  35. }