createKonbiniPayment
Create a one-time konbini payment for an existing user.
Arguments
Returns
CreateKonbiniPaymentResponse!Returned when a customer creates a Konbini Payment from their MyPage.
Possible Errors
Allowed Viewers
Query Complexity
6Examples
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 CreateKonbiniPayment($input: CreateKonbiniPaymentInput!) {
createKonbiniPayment(input: $input) {
... on CommonError {
...CommonErrorFragment
}
... on KonbiniPaymentCreated {
...KonbiniPaymentCreatedFragment
}
}
}
Variables
{
"input": CreateKonbiniPaymentInput
}
Response
{
"data": {
"createKonbiniPayment": CommonError
}
}