initiateStandalonePayment
Initiate a standalone payment and return the client secret required to complete it.
Arguments
Input fields for initiating a standalone payment.
Returns
InitiateStandalonePaymentInitiate a standalone payment and return the client secret required to complete it.
Possible Errors
Allowed Viewers
Required Permissions
Can access customer queriesCan initiate standalone payments
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 InitiateStandalonePayment($input: InitiateStandalonePaymentInput!) {
initiateStandalonePayment(input: $input) {
payment {
...InitiateStandalonePaymentOutputFragment
}
}
}
Variables
{
"input": InitiateStandalonePaymentInput
}
Response
{
"data": {
"initiateStandalonePayment": {
"payment": InitiateStandalonePaymentOutput
}
}
}