GET api/PatientPayments/{id}
Returns the details of a payment made to a patient.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id |
Unique ID of the payment. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
PatientPaymentModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Id |
Unique ID of the billpayment. |
integer |
None. |
| AccountId |
Account ID. |
globally unique identifier |
None. |
| CreatedUtc |
Created date in Utc. |
string |
None. |
| PatientId |
Patient ID of the bill payment. |
globally unique identifier |
None. |
| PatientExternalId |
Patient external ID. |
string |
None. |
| PatientFullName |
Patient full name |
string |
None. |
| PatientBirthday |
Patient birthday. |
string |
None. |
| PatientComments |
Patient comments. |
string |
None. |
| ReferenceNumber |
Reference number. |
string |
None. |
| ReferenceName |
Reference name |
string |
None. |
| CardholderName |
Cardholder name. |
string |
None. |
| CardholderAddress1 |
Cardholder address1. |
string |
None. |
| CardholderAddress2 |
Cardholder address2. |
string |
None. |
| CardholderCity |
Cardholder city. |
string |
None. |
| CardholderState |
Cardholder state. |
string |
None. |
| CardholderZip |
Cardholder zip. |
string |
None. |
| CardholderPhoneNumber |
Cardholder phone number. |
string |
None. |
| CardholderEmail |
Cardholder email. |
string |
None. |
| CardType |
Card type. |
string |
None. |
| Last4CardNumber |
Last four card number. |
string |
None. |
| Amount |
Amount. |
decimal number |
None. |
| ProcessedAmount |
Processed amount. |
decimal number |
None. |
| TransactionId |
Transaction ID. |
string |
None. |
| PatientCommunicationsEmail |
Patient communication email. |
string |
None. |
| MessageToPracticeId |
Message to practice ID. |
globally unique identifier |
None. |
| PaymentSuccessful |
Payment successful. |
boolean |
None. |
| AlreadySent |
Message already sent. |
boolean |
None. |
| SentOn |
Date sent. |
string |
None. |
| CardExpiration |
Card expiration date. |
string |
None. |
Response Formats
application/json, text/json
{
"Id": 1,
"AccountId": "a2241a68-15cb-4c37-ab50-cf2c5ce7b2be",
"CreatedUtc": "sample string 3",
"PatientId": "f00979bb-8ca2-4699-b9c2-5239610e63d9",
"PatientExternalId": "sample string 5",
"PatientFullName": "sample string 6",
"PatientBirthday": "sample string 7",
"PatientComments": "sample string 8",
"ReferenceNumber": "sample string 9",
"ReferenceName": "sample string 10",
"CardholderName": "sample string 11",
"CardholderAddress1": "sample string 12",
"CardholderAddress2": "sample string 13",
"CardholderCity": "sample string 14",
"CardholderState": "sample string 15",
"CardholderZip": "sample string 16",
"CardholderPhoneNumber": "sample string 17",
"CardholderEmail": "sample string 18",
"CardType": "sample string 19",
"Last4CardNumber": "sample string 20",
"Amount": 21.0,
"ProcessedAmount": 22.0,
"TransactionId": "sample string 23",
"PatientCommunicationsEmail": "sample string 24",
"MessageToPracticeId": "cf2b3a73-2eb6-4b91-b1d4-f050b53d3244",
"PaymentSuccessful": true,
"AlreadySent": true,
"SentOn": "sample string 27",
"CardExpiration": "sample string 28"
}
application/xml, text/xml
<PatientPaymentModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GlobalPortal.Mobile.Api.Models.BillPayments"> <AccountId>a2241a68-15cb-4c37-ab50-cf2c5ce7b2be</AccountId> <AlreadySent>true</AlreadySent> <Amount>21</Amount> <CardExpiration>sample string 28</CardExpiration> <CardType>sample string 19</CardType> <CardholderAddress1>sample string 12</CardholderAddress1> <CardholderAddress2>sample string 13</CardholderAddress2> <CardholderCity>sample string 14</CardholderCity> <CardholderEmail>sample string 18</CardholderEmail> <CardholderName>sample string 11</CardholderName> <CardholderPhoneNumber>sample string 17</CardholderPhoneNumber> <CardholderState>sample string 15</CardholderState> <CardholderZip>sample string 16</CardholderZip> <CreatedUtc>sample string 3</CreatedUtc> <Id>1</Id> <Last4CardNumber>sample string 20</Last4CardNumber> <MessageToPracticeId>cf2b3a73-2eb6-4b91-b1d4-f050b53d3244</MessageToPracticeId> <PatientBirthday>sample string 7</PatientBirthday> <PatientComments>sample string 8</PatientComments> <PatientCommunicationsEmail>sample string 24</PatientCommunicationsEmail> <PatientExternalId>sample string 5</PatientExternalId> <PatientFullName>sample string 6</PatientFullName> <PatientId>f00979bb-8ca2-4699-b9c2-5239610e63d9</PatientId> <PaymentSuccessful>true</PaymentSuccessful> <ProcessedAmount>22</ProcessedAmount> <ReferenceName>sample string 10</ReferenceName> <ReferenceNumber>sample string 9</ReferenceNumber> <SentOn>sample string 27</SentOn> <TransactionId>sample string 23</TransactionId> </PatientPaymentModel>