You can configure card number and name, and assign permissions to the card, and then you can arm and disarm by the card.
Function |
Description |
---|---|
Get Card Configuration Capability |
Call NET_DVR_STDXMLConfig to transmit the request URI: GET /ISAPI/SecurityCP/Configuration/card/capabilities?format=json. And the capability is returned in the message JSON_CardCap by the output parameter (lpOutputParam). |
Get Currently Added Card's Parameters |
Call NET_DVR_STDXMLConfig to transmit the request URI: GET /ISAPI/SecurityCP/Configuration/card/currentAdd?format=json. And the parameters of the currently added card are returned in the message JSON_Card by the output buffer (lpOutBuffer) of the output parameter (lpOutputParam). |
Get One Card's Parameters |
Call NET_DVR_STDXMLConfig to transmit the request URI: GET /ISAPI/SecurityCP/Configuration/card/<ID>?format=json. And the configuration parameters of a card are returned in the message JSON_Card by the output buffer (lpOutBuffer) of the output parameter (lpOutputParam). |
Get All Cards' Parameters |
Call NET_DVR_STDXMLConfig to transmit the request URI: GET /ISAPI/SecurityCP/Configuration/card?format=json. And the configuration parameters of all cards are returned in the message of JSON_List_Card by the output buffer (lpOutBuffer) of the output parameter (lpOutputParam). |
Set One Card's Parameters |
Call NET_DVR_STDXMLConfig to transmit the request URI: PUT /ISAPI/SecurityCP/Configuration/card/<ID>?format=json, and set the input buffer (lpInBuffer) of the input parameter (lpInputParam) to the message JSON_Card. |
Delete One Card |
Call NET_DVR_STDXMLConfig to transmit the request URI: DELETE /ISAPI/SecurityCP/Configuration/card/<ID>?format=json. |
Get Capability of Controlling Asynchronous Card Adding Mode |
Call NET_DVR_STDXMLConfig to transmit the request URI: GET /ISAPI/SecurityCP/Configuration/card/mode/capabilities?format=json. And the capability is returned in the message JSON_Cap_CardMode by the output parameter (lpOutputParam). |
Control Asynchronous Card Adding Mode |
Call NET_DVR_STDXMLConfig to transmit the request URI: PUT /ISAPI/SecurityCP/Configuration/card/mode?format=json and set the input buffer (lpInBuffer) of the input parameter (lpInputParam) to the message JSON_CardMode. |
Get Asynchronously Added Card's Parameters |
Call NET_DVR_STDXMLConfig to transmit the request URI: GET /ISAPI/SecurityCP/Configuration/card/currentAddAsyn?format=json. And the parameters are returned in the message JSON_Card by the output buffer (lpOutBuffer) of the output parameter (lpOutputParam). |