Link payment card to a user account for seamless transactions. Upon successful linking, the card becomes associated with the user's profile, enabling secure and convenient payments.
Arguments
attachCardRequestInput
AttachCardRequestInputA card request to be attached to the customer.
Mutation
1mutation attachCardToCustomer($attachCardRequestInput: AttachCardRequestInput) {2 attachCardToCustomer(attachCardRequestInput: $attachCardRequestInput) {3 data4 message5 success6 }7}
Try it
Input Variables
1{2 "attachCardRequestInput": {3 "card_id": "card_id",4 "name_on_card": "name_on_card",5 "nickname": "nickname",6 "refresh": true7 }8}
Response
1{2 "attachCardToCustomer": {3 "data": {},4 "message": "message",5 "success": true6 }7}
Was this section helpful?