You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in Attribute Value --> By Entity ID --> Get attribute value
GET /v2/entities/<id>/attrs/<attr_name>/value
If Accept: application/json and the attribute value is number or string or boolean or null returns a json response as {"value":56.000000} or {"value": "34"} or {"value":true} instead of an error message, ex:
HTTP code: 406 Not Acceptable
{
"error": "NotAcceptable",
"description": "no defined yet"
}
If Accept: text/plain always returns a string, also in number, boolean or null values
The text was updated successfully, but these errors were encountered:
Actually, this is already taken into account in issue #1259 part 6. However, let's hold this issue if you want, to make more explicit the need of checking this after #1259 completion from a QA perspective.
in Attribute Value --> By Entity ID --> Get attribute value
GET
/v2/entities/<id>/attrs/<attr_name>/value
Accept: application/json
and the attribute value is number or string or boolean or null returns a json response as{"value":56.000000}
or{"value": "34"}
or{"value":true}
instead of an error message, ex:Accept: text/plain
always returns a string, also in number, boolean or null valuesThe text was updated successfully, but these errors were encountered: