Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
cURL
curl --request POST \ --url https://api.orafi.app/v1/transactions/payment/paylink \ --header 'Content-Type: application/json' \ --data ' { "paylinkId": "paylink_123", "customer": { "fullname": "John Doe", "email": "john@example.com" } } '
{ "success": true, "message": "Payment created successfully", "data": { "transaction": { "amount": 123, "currency": "<string>", "id": "<string>", "network": "SUI", "amountInUSDC": 123, "profile": { "id": "<string>", "businessName": "<string>", "user": { "email": "<string>" } }, "payment": { "id": "<string>", "subscriptionId": "<string>", "redirectUrl": "<string>" } }, "checkoutUrl": "<string>" } }
Create a payment for a specific paylink. Does not require authentication.
The paylink ID
"paylink_123"
Show child attributes
Paylink payment created successfully
true
"Payment created successfully"