No commit message authored by Martin Straka's avatar Martin Straka
No commit message
......@@ -49,8 +49,8 @@ The following options (services) are related to actions that should be performed
#### Service Names:
* **--get-msg-list** <_string_of_parameters_> - Download list of received/sent messages.
* **--send-msg** <_string_of_parameters_> - Create and send a new message.
* **--download-msg** <_string_of_parameters_> - Download complete message with signature and time stamp MV.
* **--download-delivery-info** <_string_of_parameters_> - Download delivery info of message with signature and time stamp MV.
* **--get-msg** <_string_of_parameters_> - Get/download complete message with signature and time stamp MV.
* **--get-delivery-info** <_string_of_parameters_> - Get/download delivery info of message with signature and time stamp MV.
* **--get-user-info** - Get information about user and its role and privileges.
* **--get-owner-info** - Get information about owner and its databox.
* **--check-attachment** - Get list of messages where attachment missing (local database only).
......@@ -126,7 +126,7 @@ datovka --login "username='xxxxxx',method='user',type='std',password='yyyyyyyy'"
* *dmID* - Message ID. Maximal length 20 characters. [Mandatory]
* *dmType* - Type of messages. Values: {sent,received}, default is received. [Mandatory]
* *zfoFile* - Full path where message ZFO file will be saved. If not specified, message will be stored only to database. [Optional]
* *download* - Values: {yes,no,ondemand}. Specifies whether to download the message from ISDS server (no = never download, use from database if present; yes = always download even if does already exist in database; ondemand = download only if doesn't exist in database). [Optional]
Return [msgStruct, status]
......@@ -139,6 +139,8 @@ datovka --login "username='xxxxxx',method='user',type='std',password='yyyyyyyy'"
**--download-delivery-info**
* *dmID* - Message ID. Maximal length 20 characters. [Mandatory]
* *zfoFile* - Full path where delivery info ZFO file will be saved. If not specified, delivery info will be stored only to database. [Optional]
* *zfoFile* - Full path where message ZFO file will be saved. If not specified, message will be stored only to database. [Optional]
* *download* - Values: {yes,no,ondemand}. Specifies whether to download the message from ISDS server (no = never download, use from database if present; yes = always download even if does already exist in database; ondemand = download only if doesn't exist in database). [Optional]
Return [deliveryStruct, status]
......
......