GET api/CustomerSubscription/GetTotalInvoicesUsersPayments?From={From}&To={To}
No documentation available.
Request Information
Parameters
| Name | Description | Additional information |
|---|---|---|
| From | No documentation available. |
Define this parameter in the request URI. |
| To | No documentation available. |
Define this parameter in the request URI. |
Response Information
No documentation available.
Response body formats
application/json, text/json
Sample:
{
"FirstUser": "sample string 1",
"FirstUserTotal": 2.0,
"FirstUserTotalPaid": 3.0,
"FirstUserTotalRemaining": 4.0,
"FirstUserCollectionRatio": 5.0,
"SecondUser": "sample string 6",
"SecondUserTotal": 7.0,
"SecondUserTotalPaid": 8.0,
"SecondUserTotalRemaining": 9.0,
"SecondUserCollectionRatio": 10.0,
"ThirdUser": "sample string 11",
"ThirdUserTotal": 12.0,
"ThirdUserTotalPaid": 13.0,
"ThirdUserTotalRemaining": 14.0,
"ThirdUserCollectionRatio": 15.0
}
application/xml, text/xml
Sample:
<VM_UsersPayments xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ERP_Subscription"> <FirstUser>sample string 1</FirstUser> <FirstUserCollectionRatio>5</FirstUserCollectionRatio> <FirstUserTotal>2</FirstUserTotal> <FirstUserTotalPaid>3</FirstUserTotalPaid> <FirstUserTotalRemaining>4</FirstUserTotalRemaining> <SecondUser>sample string 6</SecondUser> <SecondUserCollectionRatio>10</SecondUserCollectionRatio> <SecondUserTotal>7</SecondUserTotal> <SecondUserTotalPaid>8</SecondUserTotalPaid> <SecondUserTotalRemaining>9</SecondUserTotalRemaining> <ThirdUser>sample string 11</ThirdUser> <ThirdUserCollectionRatio>15</ThirdUserCollectionRatio> <ThirdUserTotal>12</ThirdUserTotal> <ThirdUserTotalPaid>13</ThirdUserTotalPaid> <ThirdUserTotalRemaining>14</ThirdUserTotalRemaining> </VM_UsersPayments>