prepayPayments
Payments made to add credit to the account's smart prepay meters.
Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query PrepayPayments(
$accountNumber: String!,
$after: String,
$before: String,
$first: Int,
$last: Int
) {
prepayPayments(
accountNumber: $accountNumber,
after: $after,
before: $before,
first: $first,
last: $last
) {
edgeCount
edges {
...PrepayPaymentConnectionTypeEdgeFragment
}
pageInfo {
...PageInfoFragment
}
totalCount
}
}
Variables
{
"accountNumber": "A-E421ACD3",
"after": "YXJyYXljb25uZWN0aW9uOjEw=",
"before": "YXJyYXljb25uZWN0aW9uOjEw=",
"first": 10,
"last": 10
}
Response
{
"data": {
"prepayPayments": {
"edgeCount": 41,
"edges": [PrepayPaymentConnectionTypeEdge],
"pageInfo": PageInfo,
"totalCount": 46
}
}
}