createAccountCharge
Add charges to an account.
Arguments
Input fields for creating an account charge.
Possible Errors
Allowed Viewers
Required Permissions
Can add charges to accounts Can perform payments operationsQuery 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 CreateAccountCharge($input: CreateAccountChargeInput!) {
createAccountCharge(input: $input) {
accountCharge {
...AccountChargeTypeFragment
}
}
}
Variables
{
"input": CreateAccountChargeInput
}
Response
{
"data": {
"createAccountCharge": {
"accountCharge": AccountChargeType
}
}
}