Thanks, please let me know when this will be fixed. I want to launch my new website service and this is holding me up. Thanks.
Also I have one other question. I also want to query for the signature audit log data. Can you point me towards some documentation or give me an example of doing this with php and api?
Thanks for sending the correct api endpoint and args needed to get audit log data.
This method takes two arguments: userGuid and envelopeGuid. The problem is that I want to get audit log for entire envelope history for all users, not for a specific user. Why is userGuid required? Can I just send the administrator account userGuid in order to get a ‘global’ look at the envelope audit log? If so how do I get the administrator userGuid?
Can you point me towards a php wrapper example? I’m using the PHP wrapper that you wrote, I got it from github. I really need an example so that I can be sure I’m creating all the write objects and performing this call correctly.
In general yes, it’s correct, but we are not sure about your construction: $groupDocs->signature->GetEnvelopeAuditLogs
Could you please show how do you created the $groupDocs object - looks like you have redefined GroupDocs classes by putting all GroupDocs classes in to the one class, is that correct?
You’ll notice that the DateTime property is NULL. Why is it NULL? I need the datetime that the events happened, thats the whole point of an audit log is to know who did what action and when did they do the action.
We have checked this issue and we have fixed it. To resolve the issue please update GroupDocs PHP SDK to 2.3.1 version or you can simply open “SignatureEnvelopeAuditLogInfo” model (placed in the Model folder of the SDK) and rename “DateTime” parameter to “Date”.
For example here is how it’s should be:
class SignatureEnvelopeAuditLogInfo {
static $swaggerTypes = array(
‘id’ => ‘string’,
‘type’ => ‘int’,
‘Date’ => ‘string’,
‘userName’ => ‘string’,
‘action’ => ‘string’,
‘remoteAddress’ => ‘string’,
‘details’ => ‘string’
);
public $id; // string
public $type; // int
public $Date; // string
public $userName; // string
public $action; // string
public $remoteAddress; // string
public $details; // string
}