POST Api/Vending/EmailReceipt
Request Information
URI Parameters
None.
Body Parameters
EmailReceiptRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| VendingResponseID | globally unique identifier |
None. |
|
| BillPaymentID | globally unique identifier |
None. |
|
| Username | string |
None. |
|
| Password | string |
None. |
|
| DeviceManufacturer | string |
None. |
|
| DeviceModel | string |
None. |
|
| DeviceSDKInt | string |
None. |
|
| DeviceSDKVersion | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"VendingResponseID": "a440f78e-d0b7-4a62-a252-ddaac8fb2ca0",
"BillPaymentID": "74330d45-4c8f-4811-b395-d57cb288c98a",
"Username": "sample string 3",
"Password": "sample string 4",
"DeviceManufacturer": "sample string 5",
"DeviceModel": "sample string 6",
"DeviceSDKInt": "sample string 7",
"DeviceSDKVersion": "sample string 8"
}
application/xml, text/xml
Sample:
<EmailReceiptRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PPWAssistMobileAPI.Models"> <DeviceManufacturer>sample string 5</DeviceManufacturer> <DeviceModel>sample string 6</DeviceModel> <DeviceSDKInt>sample string 7</DeviceSDKInt> <DeviceSDKVersion>sample string 8</DeviceSDKVersion> <Password>sample string 4</Password> <Username>sample string 3</Username> <BillPaymentID>74330d45-4c8f-4811-b395-d57cb288c98a</BillPaymentID> <VendingResponseID>a440f78e-d0b7-4a62-a252-ddaac8fb2ca0</VendingResponseID> </EmailReceiptRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
EmailReceiptResponse| Name | Description | Type | Additional information |
|---|---|---|---|
| Success | boolean |
None. |
|
| ErrorMessage | string |
None. |
|
| ServerDateTime | string |
None. |
|
| ErrorType | Errors |
None. |
Response Formats
application/json, text/json
Sample:
{
"Success": true,
"ErrorMessage": "sample string 2",
"ServerDateTime": "sample string 3",
"ErrorType": 0
}
application/xml, text/xml
Sample:
<EmailReceiptResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PPWAssistMobileAPI.Models"> <ErrorMessage>sample string 2</ErrorMessage> <ErrorType>SystemError</ErrorType> <ServerDateTime>sample string 3</ServerDateTime> <Success>true</Success> </EmailReceiptResponse>