Returns the list of all records of the given table of the given edited entity

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

Request:

Argument Type Description
dbid GUID  The ID of the database
entity String  The name of the entity
id GUID  The ID of the entity
table String  The name of the entity 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

Open the copy of the given entity 'Task' for editing

Request:
  1. POST api/databases/ec5a34c2-7062-4be7-ade9-c15acefcdbb8/entities/Task/08a11e00-188f-45d0-b767-d8620bedbad2/edit
  2. Accept: text/json
  3. Accept-Encoding: deflate
  4. Host: localhost:6496
  5. Cookie: sid=96e252b0-3147-4a01-819c-16d434b581fa
  6. 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: Wed, 26 Dec 2012 12:16:23 GMT
  6. ETag: "634921260718020940"
  7. Last-Modified: Wed, 26 Dec 2012 11:41:11 GMT
  8. Set-Cookie: sid=96e252b0-3147-4a01-819c-16d434b581fa; path=/;
  9. Server: Microsoft-HTTPAPI/2.0
  10.  
  11. {
  12. "Id": "08a11e00-188f-45d0-b767-d8620bedbad2",
  13. "Url": "api/databases/ec5a34c2-7062-4be7-ade9-c15acefcdbb8/entities/Task/08a11e00-188f-45d0-b767-d8620bedbad2/edit"
  14. }

Get all task schedule items of the copy of the task that is being edited

Request:
  1. GET api/databases/ec5a34c2-7062-4be7-ade9-c15acefcdbb8/entities/Task/08a11e00-188f-45d0-b767-d8620bedbad2/edit/TaskScheduleItems
  2. Accept: text/json
  3. Accept-Encoding: deflate
  4. Host: localhost:6496
  5. Cookie: sid=96e252b0-3147-4a01-819c-16d434b581fa
Response:
  1. Transfer-Encoding: chunked
  2. Content-Encoding:
  3. Cache-Control: no-store
  4. Content-Type: text/json; charset=utf-8
  5. Date: Wed, 26 Dec 2012 12:16:38 GMT
  6. Set-Cookie: sid=96e252b0-3147-4a01-819c-16d434b581fa; path=/;
  7. Server: Microsoft-HTTPAPI/2.0
  8.  
  9. {
  10. "IsTooManyItems": false,
  11. "Items": [
  12. {
  13. "Id": "703f4be7-ec96-43e5-8d75-897746673961",
  14. "InfoName": "TaskScheduleItems",
  15. "ETag": "634919716488187030",
  16. "ModifiedStamp": "2012-12-24T18:47:28.818703+02:00",
  17. "IsMarkedAsDeleted": false,
  18. "Properties": {
  19. "Id": "703f4be7-ec96-43e5-8d75-897746673961",
  20. "Users": {
  21. "Values": [
  22. {
  23. "Id": "ae18dea5-4f60-4f70-ae31-d8052984e31e",
  24. "DisplayText": "admin"
  25. }
  26. ],
  27. "DisplayText": "admin"
  28. },
  29. "ReminderForStart": {
  30. "Offset": {
  31. "Value": 1.0,
  32. "Kind": 2,
  33. "PureWorkTime": 1.0,
  34. "Title": "1 Days"
  35. },
  36. "Users": [
  37. {
  38. "Id": "ae18dea5-4f60-4f70-ae31-d8052984e31e",
  39. "DisplayText": "admin"
  40. }
  41. ],
  42. "HideUsers": false,
  43. "OffsetKind": -1,
  44. "Description": "'reminder before start' set via API"
  45. },
  46. "ReminderForFinish": null,
  47. "Start": "2013-01-01T08:00:00+02:00",
  48. "Finish": "2013-01-01T12:00:00+02:00",
  49. "AllDay": true,
  50. "RecurrenceInfo": null,
  51. "RecurrencePatternId": null,
  52. "DeletedRecurrences": null,
  53. "RecurrenceExceptions": null
  54. }
  55. }
  56. ]
  57. }