POST api/PayTrace/PostSendPmtRequest
Request Information
URI Parameters
None.
Body Parameters
SendPmtRequestPost| Name | Description | Type | Additional information |
|---|---|---|---|
| APIKey | string |
None. |
|
| TabletID | string |
None. |
|
| DriverID | integer |
None. |
|
| DriverNumber | string |
None. |
|
| DriverName | string |
None. |
|
| VehicleID | integer |
None. |
|
| VehicleNumber | string |
None. |
|
| TripID | integer |
None. |
|
| LinkID | string |
None. |
|
| PhoneNumber | string |
None. |
|
| Invoice_ID | string |
None. |
|
| InvoiceNumber | string |
None. |
|
| InvoiceAmount | decimal number |
None. |
|
| InvoiceDescription | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"APIKey": "sample string 1",
"TabletID": "sample string 2",
"DriverID": 3,
"DriverNumber": "sample string 4",
"DriverName": "sample string 5",
"VehicleID": 6,
"VehicleNumber": "sample string 7",
"TripID": 8,
"LinkID": "sample string 9",
"PhoneNumber": "sample string 10",
"Invoice_ID": "sample string 11",
"InvoiceNumber": "sample string 12",
"InvoiceAmount": 13.0,
"InvoiceDescription": "sample string 14"
}
application/xml, text/xml
Sample:
<PayTraceModel.SendPmtRequestPost xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProCADMobileService.Models"> <APIKey>sample string 1</APIKey> <DriverID>3</DriverID> <DriverName>sample string 5</DriverName> <DriverNumber>sample string 4</DriverNumber> <InvoiceAmount>13</InvoiceAmount> <InvoiceDescription>sample string 14</InvoiceDescription> <InvoiceNumber>sample string 12</InvoiceNumber> <Invoice_ID>sample string 11</Invoice_ID> <LinkID>sample string 9</LinkID> <PhoneNumber>sample string 10</PhoneNumber> <TabletID>sample string 2</TabletID> <TripID>8</TripID> <VehicleID>6</VehicleID> <VehicleNumber>sample string 7</VehicleNumber> </PayTraceModel.SendPmtRequestPost>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
RequestPmtReturn| Name | Description | Type | Additional information |
|---|---|---|---|
| status | boolean |
None. |
|
| message | string |
None. |
|
| StatusChangeCode | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"status": true,
"message": "sample string 2",
"StatusChangeCode": 3
}
application/xml, text/xml
Sample:
<PayTraceModel.RequestPmtReturn xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ProCADMobileService.Models"> <StatusChangeCode>3</StatusChangeCode> <message>sample string 2</message> <status>true</status> </PayTraceModel.RequestPmtReturn>