The View
action retrieves a single document and returns it.
http://host:port/action=View [&Config=<Base64_Config>] &Identifier=Identifier [&NoACI=True/False] [&Override_Config_Parameters=...]
Type: Synchronous
Parameter Name | Description | Required |
---|---|---|
Config
|
A base-64 encoded configuration. The configuration parameters that are set override the same parameters in the connector's configuration file. |
No |
Identifier
|
The identifier of the document to return. | Yes |
NoACI
|
Specifies whether to return the document using a normal ACI response with base-64 encoded content (false ), or to just return binary content (true ). The default is to return binary content (true ). |
No |
Override_Config_Parameters
|
Any other action parameters that you set override settings in the connector's configuration file. For example: /action=fetch&fetchaction=... where |
No |
http://localhost:1234/action=View&Identifier=PGlkIHM9IkRJUjEiIHI9IkM6XEF1dG9ub215XEZpbGVTeXN0ZW1Db25uZWN0b3JDRlNcZGlyMVxmaWxlOC50eHQiLz4%3D
The response is the binary content of the file, unless you have specified NoACI=false
.
With NoACI=false
, the following XML response is returned:
<autnresponse> <action>VIEW</action> <response>SUCCESS</response> <responsedata> <mime-type>application/octet-stream</mime-type> <filename>filename.bin</filename> <content>[Base64 encoded file content]</content> </responsedata> </autnresponse>
|