POST api/Verification
Request Information
URI Parameters
None.
Body Parameters
VerificationPostRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | VerificationPostRequestFields |
None. |
Request Formats
application/json, text/json
Sample:
{
"Data": {
"UserId": "sample string 1",
"Action": "sample string 2",
"RequestorId": "sample string 3",
"Comments": "sample string 4",
"VerificationCode": "sample string 5",
"VerificationTarget": "sample string 6",
"Token": "sample string 7"
}
}
application/xml, text/xml
Sample:
<VerificationPostRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignAPI.Models.Requests">
<Data>
<Action>sample string 2</Action>
<Comments>sample string 4</Comments>
<RequestorId>sample string 3</RequestorId>
<Token>sample string 7</Token>
<UserId>sample string 1</UserId>
<VerificationCode>sample string 5</VerificationCode>
<VerificationTarget>sample string 6</VerificationTarget>
</Data>
</VerificationPostRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
VerificationPostResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | VerificationPostResponseFields |
None. |
|
| Response | BaseResponseItems |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"Token": "sample string 1"
},
"Response": {
"Processed": "sample string 1",
"Error": "sample string 2"
}
}
application/xml, text/xml
Sample:
<VerificationPostResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignAPI.Models.Responses">
<Response>
<Error>sample string 2</Error>
<Processed>sample string 1</Processed>
</Response>
<Data>
<Token>sample string 1</Token>
</Data>
</VerificationPostResponse>