18 lines
495 B
GraphQL
18 lines
495 B
GraphQL
query me {me{paymentInfo{stripeInfo{customerId},paymentMethods{sPayMethodId,default,nameOnCard},billingInfos{firstName,lastName,vatNumber}}}}
|
|
|
|
mutation addOnePaymentMethod {
|
|
accountsPaymentMethodsAddOne(
|
|
input:{
|
|
sPayMethodId:"pm_card_visa",
|
|
nameOnCard:"SANAWAR SYED AZOR ALI",
|
|
})
|
|
|
|
{nameOnCard, cardInfo{brand,country,exp_year,exp_month,last4}}
|
|
}
|
|
|
|
|
|
mutation deleteOnePaymentMethod {
|
|
accountsPaymentMethodsDeleteOne(
|
|
id:"4bf3e82a-af7e-4425-86d9-a84ab79a44fe"
|
|
)
|
|
} |