GetPointsAttributes
Retrieve the attributes of the Historian points.
Input Parameter
Item | Description |
|---|---|
Request | GET |
URL Parameter |
|
Request Header | Authentication : String (required). Bearer Token string returned from the Login action. |
Request Body | None |
Status Code |
|
Sample 1
Request Header
"Authorization": "eyJhbGciOiJIUzI1N…"
Request URL Parameter
request={"ServerName":"HisSrvName","PointNames":["*Point*"],"PointAttributes":["*"]}
Response Body
{ "Result": { "TestPoint1": { "tag": "TestPoint1", "pointtype": 8, "pointid": 144, "step": 0, "future": 0, "excdevpercent": 0.1 }, "TestPoint2": { "tag": "TestPoint2", "pointtype": 8, "pointid": 145, "step": 0, "future": 0, "excdevpercent": 0.1 } }, "Success": true, "ErrorMessage": "" }
TIP:
PointNames and PointAttributes support fuzzy matching.
- "?" matches any single character in a specific position. For example, the wildcard queryf?rmwill match all of the wordsfarm,firm, andform- any word that begins with anf, is followed by any other character, and ends with the charactersrm.
- "*" matches any sequence of characters. For example, the wildcard query*rmwill match all of the wordsfarm,firm, andform, as well as words liketerm,alarm, andbrainstorm.
Sample 2
Request Header
"Authorization": "eyJhbGciOiJIUzI1N…"
Request URL Parameter
request={"ServerName":"HisSrvName","PointNames":["TestIndividualPoint"],"PointAttributes":["PointSource"]}
Response Body
{ "Result": { "TestIndividualPoint": { "pointsource": "L" } }, "Success": true, "ErrorMessage": "" }
Provide Feedback