POST api/v1/points/{pointTag}/questionable

Updates the Questionable state and optional reason for the provided point

CygNet Access Requirements

    CygNet ACS security: BRDGAPI ACCESS 3

    CygNet Bridge API license type: Base

Request Information

URI Parameters

NameDescriptionTypeAdditional information
pointTag

CygNet point tag

string

Required

Body Parameters

Request object for updating a point Questionable state

NameDescriptionTypeAdditional information
flag

Point questionable flag

boolean

None

reasonForChange

Point questionable reason for change

string

None

Request Formats

application/json, text/json

Sample:
{
  "flag": true,
  "reasonForChange": "Because it is"
}

Response Information

Resource Description

NameDescriptionTypeAdditional information
flag

Point questionable flag

boolean

None

timestamp

Point questionable timestamp

date

None

reasonForChange

Point questionable reason for change

string

None

Response Formats

application/json, text/json

Sample:
{
  "flag": true,
  "timestamp": "2000-01-01T00:00:00",
  "reasonForChange": "Because it is"
}