Returns the user's billing information as a List Response.
| Header | Data Type | Valid Values | Required | Description |
|---|---|---|---|---|
| Content-Type | string | application/json | YES | The format your data will be sent to our site. |
| X-DevKey | string | string | YES | The devkey assigned to the developer. |
| X-AccessToken | string | string | YES | The token acquired from a POST to Users/AccessToken. |
If the user credentials are not for an active user, you will recieve a 403 Forbidden and a Message Response indicating the reason
If the user credentials are for an active user, you will receive a 200 OK and the following data as serialized JSON
| Parameter | Data Type | Valid Values | Description |
|---|---|---|---|
| AccountBalance | decimal | decimal | User's account balance. |
| AmountDue | decimal | decimal | The amount due for user. |
| LastPaymentAmount | decimal | decimal | The user's last payment amount. |
| LastPaymentDate | datetime | datetime | The user's last payment date. |
| PrimaryPaymentMethod | string | string | The primary payment method for the user. |
| SecondaryPaymentMethod | string | string | The secondary payment method for the user. |