POST api/Signing/SigningRooms/Participants/LogESignConsent
Saves the ESIGN consent acceptance for the current signer user.
Request Information
URI Parameters
None.
Body Parameters
The ESIGN consent data.
ESignSystems.SmartSAFE.Models.Signing.ESignConsentInformationModel| Name | Description | Type | Additional information |
|---|---|---|---|
| SigningRoomId |
Gets or sets the SigningRoom identifier. |
integer |
Required |
| IpAddress |
Gets or sets the ip address where the esign consent was accepted. |
string |
Required Max length: 255 |
| ESignConsentAccepted |
Gets or sets a value indicating whether the esign consent was accepted. |
boolean |
Required |
Request Formats
application/json, text/json
Sample:
{
"SigningRoomId": 1,
"IpAddress": "sample string 2",
"ESignConsentAccepted": true
}
application/xml, text/xml
Sample:
<ESignConsentInformationModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Signing"> <ESignConsentAccepted>true</ESignConsentAccepted> <IpAddress>sample string 2</IpAddress> <SigningRoomId>1</SigningRoomId> </ESignConsentInformationModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
The results of the operation.
System.Web.Http.IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.