POST api/GetParallelSigningURL
Request Information
URI Parameters
None.
Body Parameters
WorkflowInfoInput| Name | Description | Type | Additional information |
|---|---|---|---|
| WorkflowId | integer |
None. |
|
| ReferenceNo | string |
None. |
|
| ParentDocumentId | integer |
None. |
Request Formats
application/json, text/json
Sample:
{
"WorkflowId": 1,
"ReferenceNo": "sample string 2",
"ParentDocumentId": 3
}
application/xml, text/xml
Sample:
<WorkflowInfoInput xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <WorkflowId>1</WorkflowId> <ReferenceNo>sample string 2</ReferenceNo> <ParentDocumentId>3</ParentDocumentId> </WorkflowInfoInput>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ReturnObjectOfListOfParallelSigningURL| Name | Description | Type | Additional information |
|---|---|---|---|
| IsSuccess | boolean |
None. |
|
| Messages | Collection of string |
None. |
|
| ErrorCode | integer |
None. |
|
| Response | Collection of ParallelSigningURL |
None. |
Response Formats
application/json, text/json
Sample:
{
"IsSuccess": true,
"Messages": [
"sample string 1",
"sample string 2"
],
"ErrorCode": 2,
"Response": [
{
"SequenceNumber": 1,
"IdentificationNumber": "sample string 2",
"Name": "sample string 3",
"EmailId": "sample string 4",
"MobileNo": "sample string 5",
"URL": "sample string 6"
},
{
"SequenceNumber": 1,
"IdentificationNumber": "sample string 2",
"Name": "sample string 3",
"EmailId": "sample string 4",
"MobileNo": "sample string 5",
"URL": "sample string 6"
}
]
}
application/xml, text/xml
Sample:
<ReturnObjectOfListOfParallelSigningURL xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<IsSuccess>true</IsSuccess>
<Messages>
<string>sample string 1</string>
<string>sample string 2</string>
</Messages>
<ErrorCode>2</ErrorCode>
<Response>
<ParallelSigningURL>
<SequenceNumber>1</SequenceNumber>
<IdentificationNumber>sample string 2</IdentificationNumber>
<Name>sample string 3</Name>
<EmailId>sample string 4</EmailId>
<MobileNo>sample string 5</MobileNo>
<URL>sample string 6</URL>
</ParallelSigningURL>
<ParallelSigningURL>
<SequenceNumber>1</SequenceNumber>
<IdentificationNumber>sample string 2</IdentificationNumber>
<Name>sample string 3</Name>
<EmailId>sample string 4</EmailId>
<MobileNo>sample string 5</MobileNo>
<URL>sample string 6</URL>
</ParallelSigningURL>
</Response>
</ReturnObjectOfListOfParallelSigningURL>