Without the pay component
The Create Payin endpoint lets you take a payment. This endpoint requires either a customerId
or paymentMethodId
(if both are provided, the paymentMethodId
takes precedence). When using the customerId
, Loop will charge the default paymentMethod
To get the customerId
or paymentMethodId
, you must first create a customer
and attach a paymentMethod
.
To do this, you can use the Create Customer and within this call you can define the customer's default paymentMethod
. A required parameter in the paymentMethod
is the authorizationSignature
- a base64 encoded JWT token containing a signature proving ownership of the wallet address being registered as a payment method. We provide directions here on how to get this input.
Once you have these parameters, the paymentMethod
now needs to give approval to be charged. The is done by sending a transaction onchain that the wallet
signs.
Once you have these parameters, you can use the Create Payin endpoint to take a payment.
Updated about 21 hours ago