- 20 Dec 2024
- 3 Minutes à lire
- SombreLumière
- PDF
queryPendingOperation (Command)
- Mis à jour le 20 Dec 2024
- 3 Minutes à lire
- SombreLumière
- PDF
The queryPendingOperation command allows to query a pending operation in the context of maker–checker authorization.
Parameters
Parameter name | Data type | Description |
---|---|---|
sessionID | String | Required. The session identifier of the current administrative session. The logon command returns this identifier after a successful logon (see logon (Command)). |
attributeSet | PendingOperationAttributeSet | Required. A set containing zero or more attribute fields that specify the query search criteria. See PendingOperationAttributeSet (Data type). |
fieldSet | PendingOperationFieldSet | Optional. Specifies the attribute fields to be returned for all the records matching the search criteria. See PendingOperationFieldSet (Data type). If fieldSet is omitted, all possible output parameters are returned. If a pending operation attribute field is not set in the database, it is not returned for that specific operation. |
queryOptions | PendingOperationQueryOptions | Optional. Options to determine what results should be returned. See PendingOperationQueryOptions (Data type). |
Parameter name | Data type | Description |
---|---|---|
results | queryPendingOperationResults | Required. Result structure containing return and status codes and a list of zero or more result attribute fields. See PendingOperationsQueryResults (Data type). |
PendingOperationAttributeSet (Data type)
The attributes included in this attribute set define the search criteria.
Search fields are interpreted as follows:
- The asterisk (*) wildcard can be used for POFLD_CONTEXT, POFLD_IDENTIFIER, and POFLD_SERIAL_NO like in SQL SELECT statements.
Element name | Data type | Description |
---|---|---|
attributes | PendingOperationAttribute | Attributes specifying the pending operation query search criteria (see Table: PendinOperationAttribute (Data type)). |
Element name | Data type | Description |
---|---|---|
attributeOptions | AttributeOptions | Specifies how to handle the attribute value during request processing, where each option is added as a single element to attributeOptions, e.g.: <negative>true</negative> Supported values:
|
value | Any | The attribute value. The data type has to be specified by setting the xsi:type XML attribute. |
attributeID | PendingOperationAttributeIDEnum | The attribute identifier (see Table: queryPendingOperation (Supported input attributes)). |
PendingOperationFieldSet (Data type)
The attributes specified in the fieldSet parameter specify the pending operations attribute fields that should be returned by OneSpan Authentication Server for the operations matching the search criteria.
If fieldSet is omitted, all possible output parameters are returned. If an attribute field is not set in the database, it is not returned for that specific record.
Element name | Data type | Description |
---|---|---|
attributeID | PendingOperationAttributeIDEnum | The identifier of an attribute to return (see Table: queryPendingOperation (Supported output attributes) ). |
The queryPendingOperation command only returns pending operations that are visible in the domain scope of the administrative session.
PendingOperationQueryOptions (Data type)
This data type determines what results should be returned.
PendingOperationsQueryResults (Data type)
Examples
Query a specific pending operation:
<?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP-ENV:Header/> <SOAP-ENV:Body> <adm:queryPendingOperation xmlns:adm="http://www.vasco.com/IdentikeyServer/IdentikeyTypes/Administration" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <sessionID>wo]to7L]ChB^?iH1Bmi3jXUu#-ORG^Mh</sessionID> <attributeSet> <attributes> <value xsi:type="xsd:string">0a0ac84b5aec11e21529fa65...</value> <attributeID>POFLD_IDENTIFIER</attributeID> </attributes> </attributeSet> </adm:queryPendingOperation> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
Query all pending operations that affect authenticator ranges (specified by a serial number range):
<?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP-ENV:Header/> <SOAP-ENV:Body> <adm:queryPendingOperation xmlns:adm="http://www.vasco.com/IdentikeyServer/IdentikeyTypes/Administration" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <sessionID>wo]to7L]ChB^?iH1Bmi3jXUu#-ORG^Mh</sessionID> <attributeSet> <attributes> <value xsi:type="xsd:string">*To Serial Number*</value> <attributeID>POFLD_CONTEXT</attributeID> </attributes> </attributeSet> </adm:queryPendingOperation> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
Requirements
Required administrative privileges:
- Administrative logon