requestPrintedBill
Request an issued bill to be printed and (re)posted to billing address of the account.
Arguments
Input fields to request a printed bill.
Returns
RequestPrintedBillRequest an issued bill to be printed and (re)posted to billing address of the account.
Possible Errors
Allowed Viewers
Required Permissions
Can access customer queriesCan export statements
Query Complexity
1Examples
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.
mutation RequestPrintedBill($input: RequestPrintedBillInput!) {
requestPrintedBill(input: $input) {
success
}
}
Variables
{
"input": RequestPrintedBillInput
}
Response
{
"data": {
"requestPrintedBill": {
"success": true
}
}
}