createAccountCharge
Add charges to an account.
Arguments
Input fields for creating an account charge.
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.
mutation CreateAccountCharge($input: CreateAccountChargeInput!) {
createAccountCharge(input: $input) {
accountCharge {
...AccountChargeTypeFragment
}
}
}
Variables
{
"input": CreateAccountChargeInput
}
Response
{
"data": {
"createAccountCharge": {
"accountCharge": AccountChargeType
}
}
}