Returns the details of the given enum value

GET
api/databases/{dbid}/metadata/enums/{ename}/values/{value}
This request is used for getting information about the given enum value. For example, you can find out the numeric value of enum value.

Request:

Argument Type Description
dbid GUID  The ID of the database
ename String  The name of the enum
value String  The name of the enum value

Response:

Content

Type name Description
Object 

Request:
  1. GET api/databases/ec5a34c2-7062-4be7-ade9-c15acefcdbb8/metadata/enums/Vqs.Bf.Dtl.BfJobStatus/values/WaitingResponse
  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 14:58:23 GMT
  6. ETag: "634916866010755264"
  7. Last-Modified: Fri, 21 Dec 2012 09:36:41 GMT
  8. Server: Microsoft-HTTPAPI/2.0
  9.  
  10. {
  11. "Name": "WaitingResponse",
  12. "DisplayName": "Waiting response",
  13. "SmallImage": null,
  14. "SmallImageDisabled": null,
  15. "LargeImage": null,
  16. "LargeImageDisabled": null,
  17. "Declarative": false,
  18. "LockedBySolution": false,
  19. "IntValue": 2,
  20. "UserHidden": false
  21. }