Returns blob data of the given edited entity table

GET
api/databases/{dbid}/entities/{entity}/{id}/edit/{table}/{tid}/data/{property}
This request is used for getting BLOB data.
The data returns 'as is', for example, if you request BLOB data of Image type, then content will include image data and 'Content-Type' (ex.: 'image/png')

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
tid GUID  The ID of the entity table record
property String  The name of the property

Response:

Content

Type name Description
Object 

Request:
  1. GET api/databases/ec5a34c2-7062-4be7-ade9-c15acefcdbb8/entities/Task/08a11e00-188f-45d0-b767-d8620bedbad2/edit/TaskScheduleItems/a3570b1d-3a72-427e-ac38-c3324fb97031/data/ReminderForStart
  2. Accept: text/json
  3. Accept-Encoding: deflate
  4. Host: localhost:6496
  5. Cookie: sid=41f1cc3d-2701-4185-8d3c-8dcd60be24dc
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 13:43:20 GMT
  6. Last-Modified: Wed, 26 Dec 2012 13:42:02 GMT
  7. Server: Microsoft-HTTPAPI/2.0
  8.  
  9. {
  10. "Offset": {
  11. "Value": 1.0,
  12. "Kind": 2,
  13. "PureWorkTime": 1.0,
  14. "Title": "1 Days"
  15. },
  16. "Users": [
  17. {
  18. "Id": "ae18dea5-4f60-4f70-ae31-d8052984e31e",
  19. "DisplayText": "admin"
  20. }
  21. ],
  22. "HideUsers": false,
  23. "OffsetKind": -1,
  24. "Description": "'reminder before start' set via API"
  25. }