Returns the details of the given record of the given dimension table

GET
api/databases/{dbid}/analytics/dimensions/{dimension}/{id}
This request is used for getting the information of the given dimension table record as well as its system parameters such as:
Id - Dimension table record ID
InfoName - MetaName of dimension table
ModifiedStamp - Date and time the dimension table record was last modified

Request:

Argument Type Description
dbid GUID  The ID of the database
dimension String  The name of the analytics dimension table
id GUID  The ID of the analytics dimension table record

Response:

Content

Name Type Options Description
ETag String  ETag of object
Id GUID  The id of the object
InfoName String  The name of the object
IsMarkedAsDeleted Boolean  Indicates that the object is marked for deletion
ModifiedStamp Date  Last modified of object
Properties Array of name: value  List of properties of an object

Request:
  1. GET api/databases/ec5a34c2-7062-4be7-ade9-c15acefcdbb8/analytics/dimensions/Dim_Project/e9ae7e7e-c935-4e7c-9d82-4ab829c3f6b9
  2. Accept: text/json
  3. Accept-Encoding: deflate
  4. Host: localhost:6496
  5. Cookie: sid=20715d87-29dc-429e-9a86-4b3c60cd8a45
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 16:22:05 GMT
  6. Set-Cookie: sid=20715d87-29dc-429e-9a86-4b3c60cd8a45; path=/;
  7. Server: Microsoft-HTTPAPI/2.0
  8.  
  9. {
  10. "Id": "e9ae7e7e-c935-4e7c-9d82-4ab829c3f6b9",
  11. "InfoName": "Dim_Project",
  12. "ModifiedStamp": "2012-12-21T18:12:42.0857118+02:00",
  13. "Properties": {
  14. "Code": "PRJ23",
  15. "EntityCreator": {
  16. "Url": "api/databases/ec5a34c2-7062-4be7-ade9-c15acefcdbb8/tables/Dim_Users/ae18dea5-4f60-4f70-ae31-d8052984e31e",
  17. "Title": ""
  18. },
  19. "EntityCreatedTime": {
  20. "Url": "api/databases/ec5a34c2-7062-4be7-ade9-c15acefcdbb8/tables/Dim_TimeKey/00000000-0000-0063-4917-031200000000",
  21. "Title": ""
  22. },
  23. "EntityModifiedTime": {
  24. "Url": "api/databases/ec5a34c2-7062-4be7-ade9-c15acefcdbb8/tables/Dim_TimeKey/00000000-0000-0063-4917-031200000000",
  25. "Title": ""
  26. },
  27. "Name": "New Project 1",
  28. "Folder": {
  29. "Url": "api/databases/ec5a34c2-7062-4be7-ade9-c15acefcdbb8/tables/Dim_Folders/11111111-1111-1111-1111-111111111111",
  30. "Title": ""
  31. },
  32. "Key": "e9ae7e7e-c935-4e7c-9d82-4ab829c3f6b9",
  33. "Title": "(PRJ23) New Project 1",
  34. "Id": "e9ae7e7e-c935-4e7c-9d82-4ab829c3f6b9",
  35. "ModifiedStamp": "2012-12-21T18:12:42.0857118+02:00"
  36. }
  37. }