POST api/MailTracking/GetCertifiedSignaturePdf
Gets signature PDF bytes for a given order number.
Request Information
URI Parameters
None.
Body Parameters
GetCertifiedSignaturePdfRequestModel| Name | Description | Type | Additional information |
|---|---|---|---|
| UserId | integer |
None. |
|
| AuthToken | string |
None. |
|
| ReceiptId |
The SouthData receipt number that will be used to retrieve the PDF. ReceiptId is required and must be a positive number. |
string |
Required |
Request Formats
application/json, text/json
Sample:
{
"UserId": 1,
"AuthToken": "sample string 2",
"ReceiptId": "sample string 3"
}
application/xml, text/xml
Sample:
<GetCertifiedSignaturePdfRequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SouthDataAPI.Models"> <AuthToken>sample string 2</AuthToken> <ReceiptId>sample string 3</ReceiptId> <UserId>1</UserId> </GetCertifiedSignaturePdfRequestModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
multipart/form-data
Sample:
Sample not available.
application/octet-stream
Sample:
Sample not available.
Response Information
Resource Description
Response model containing certified signature for provided recipient.
GetCertifiedSignaturePdfResponseModel| Name | Description | Type | Additional information |
|---|---|---|---|
| FileBytes | Collection of byte |
None. |
Response Formats
application/json, text/json
Sample:
{
"FileBytes": "QEA="
}
application/xml, text/xml
Sample:
<GetCertifiedSignaturePdfResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SouthDataAPI.Models"> <FileBytes>QEA=</FileBytes> </GetCertifiedSignaturePdfResponseModel>